The SelectionUpdatedEvent is not fired when I check the checkbox in the header of the ListGrid to select all rows.
It's only fired when I uncheck the checkbox in the header of the ListGrid or when I select/deselect rows.
I'm developing with smartGWT 4.0?
Anyone has the same issue? On the showcase of smartGWT 4.1 it seams to work?
It's only fired when I uncheck the checkbox in the header of the ListGrid or when I select/deselect rows.
I'm developing with smartGWT 4.0?
Anyone has the same issue? On the showcase of smartGWT 4.1 it seams to work?
Code:
groupGrid.setShowAllRecords(true);
groupGrid.setSelectionType(SelectionStyle.SIMPLE);
groupGrid.setSelectionAppearance(SelectionAppearance.CHECKBOX);
groupGrid.addSelectionUpdatedHandler(new SelectionUpdatedHandler() {
@Override
public void onSelectionUpdated(SelectionUpdatedEvent event) {
}
});