The base implementation of List Views in my application utilizes
SingleSelectionModel. Upon selection, you will be taken to a different
place in the application(Selection Place).
One of the tables however has a ClickableCell which upon click event will
also take you to a different place in the application(Click Place). Now
when I click on the cell, there will be two place changes kicked in, one
place change for Cell click and one place change due to
SingleSelectionModel. Is there any way that I can one for the other?
Basically do not kick in selection for the clickable cell?. I research the
forum and found:
https://groups.google.com/d/topic/google-web-toolkit/1GNO6Lwwaoc/discussion
I tried to override "handleSelection()" method in my Cell (as below) and
it did not make any difference.
@Override
public boolean handlesSelection() {
return false;
}
Any suggestion or ideas is greatly appreciated.
Thanks,
Arash
--
You received this message because you are subscribed to the Google Groups
"Google Web Toolkit" group.
To view this discussion on the web visit
https://groups.google.com/d/msg/google-web-toolkit/-/Ng0QHkNXG78J.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/google-web-toolkit?hl=en.