Using 6.0 open
I have a TreeGrid having setSelectionAppearance(SelectionAppearance.CHECKBOX);
I we want the row clicked (not necessarily checked) to remain highlighted until another row is clicked.
Setting setShowSelectedStyle(true); does not work because "selected" means checked.
What I'm looking for is "setShowClickedStyle(true)" but that function does not exist.
Is there an API method to set the clicked row style? Or do we need to bake our own using addCellClickHandler(new CellClickHandler() ... <row selected style code>... ?
Thanks in advance for pointers.
-Tom
I have a TreeGrid having setSelectionAppearance(SelectionAppearance.CHECKBOX);
I we want the row clicked (not necessarily checked) to remain highlighted until another row is clicked.
Setting setShowSelectedStyle(true); does not work because "selected" means checked.
What I'm looking for is "setShowClickedStyle(true)" but that function does not exist.
Is there an API method to set the clicked row style? Or do we need to bake our own using addCellClickHandler(new CellClickHandler() ... <row selected style code>... ?
Thanks in advance for pointers.
-Tom
Comment