I am using Ext GWT. I have created a Grid with a CheckColumnConfig with a CheckBox inside it. I want to put a listener on the checkbox in order to allow single selection on the grid. The problem is that no listener seems working. I am using the method addListener trying with the event Events.Change Events.Changed and Events.OnClick but it seems they are not working properly. How can I attach a listener on check change?
Thanks
I have resolved the problem using a ColumnConfig (not a CheckColumnConfig) and putting into it a GridCellRenderer with a checkbox with a OnChange listener attached.