Hi,
I found this very nice feature that creates a tri-state checkbox tree here http://www.smartclient.com/smartgwt/...#tree_checkbox
But how do i catch and interpret the state change event?
The SelectionChangedHandler is triggered but i cant get any usefull information from it.
Best Regards,
Jolie
I found this very nice feature that creates a tri-state checkbox tree here http://www.smartclient.com/smartgwt/...#tree_checkbox
But how do i catch and interpret the state change event?
The SelectionChangedHandler is triggered but i cant get any usefull information from it.
Code:
treeGrid.addSelectionChangedHandler(new SelectionChangedHandler() { public void onSelectionChanged(SelectionEvent event) { //I want to know what item that changed state //and what the new state is but i dont know how. } });
Jolie
Comment