Hi!
is it possible to change the selection of a ListGird without firing the selectionChangedEvent?
I have to do something like this but without the wonderful stack overflow :)
Any tip¿?
Thanks!
is it possible to change the selection of a ListGird without firing the selectionChangedEvent?
I have to do something like this but without the wonderful stack overflow :)
Code:
grid.addSelectionChangedHandler(new SelectionChangedHandler() {
public void onSelectionChanged(SelectionEvent event) {
grid.selectSingleRecord(dirtyRecord);
}
});
Thanks!