Is there a way to add a clickHandler to a Column in a cellTable in GWT ??
I do not see any option from the documentation for TextColumn.
My requirement goes this way - I have to display 5 columns of data in a cell table and one of the columns must have a onClick event to be fired. But I found no way to add a clickhandler to the textColumn.
if this was supposed to be done in regular html it would not take me 5 seconds to write the code -
Write your custom cell (here an example I wrote based on GWT
ActionCell
) :And use it within an
IndentityColumn
which you add to yourCellTable
: