Unanswered: how to create a column with strings and checkboxes using GXT 3
Unanswered: how to create a column with strings and checkboxes using GXT 3
how to create a column with strings and checkboxes using GXT 3 and i want to change the editor based on the value i.e.. if cell value contains string it has to show textfield as editor, else it has to show checkbox.
I know how to create checkbox column but i want a column with strings and checkbox both.
Sounds like you want a custom cell, but the trick here is that you lose the ability to use GWT/GXT widgets classes because you're mucking around in the render(...) method. That said, if you're happy doing the work yourself, check out XTemplates as they can conditionally create HTML. Your custom cell will probably need to extend AbstractCell.
If you need event handlers on this cell let me know and I can show you some of the options available to you.