java: 1.8
GWT: 2.7.0
SmartGWT: 5.0-p20150816
I have a TreeGrid with many columns.
I need to allow a user to use single click to select a "row" and double click to initiate an action ( popping up another window ).
We have a "+" being used to click on for opening nodes, so double click does not need to open nodes.
I have tried a number of different handlers, RecordClickHandler, RecordDoubleClickHandler, CellContextClickHandler, CellClickHandler, CellDoubleClickHandler.
None will allow me to catch the double click once I have a (single) click Handler.
Please tell me what I need to do the have the behavior that I want.
Please also remember this is a TreeGrid not a simple ListGrid.
GWT: 2.7.0
SmartGWT: 5.0-p20150816
I have a TreeGrid with many columns.
I need to allow a user to use single click to select a "row" and double click to initiate an action ( popping up another window ).
We have a "+" being used to click on for opening nodes, so double click does not need to open nodes.
I have tried a number of different handlers, RecordClickHandler, RecordDoubleClickHandler, CellContextClickHandler, CellClickHandler, CellDoubleClickHandler.
None will allow me to catch the double click once I have a (single) click Handler.
Please tell me what I need to do the have the behavior that I want.
Please also remember this is a TreeGrid not a simple ListGrid.
Comment