Grid text Renderer

Sample code text Renderer

grid.addColumn(Person::getName)

TextRenderer is the default so that’s all you need

Column col = ViewTable.addColumn(h → {
TextField ret = new TextField(“Value”)
return ret;
}, new ComponentRenderer()) this code to display textfield. TextRenderer to use textfield

TextRenderer doesn’t use a TextField, it outputs normal text

thank you sir