I have subclassed ListGrid to provide an "owner-draw" cell for my grid using
But, doing that, the canvas is "stealing" all mouse clicks and I loose in this way the row select/deselect behavior.
How can I forward mouse clicks to the ListGrid or how can I achieve my goal (to have multiple selection and also the visual effect of row selection) ?
SelectRecord works, but handling by my own multiple selection is not straight-forward and I am keeping this as a last solution.
Issue on : smartGwt 2.2 + gwt 2.0.3
Thanks in advance for the answer,
Remyx
Code:
@Override protected Canvas createRecordComponent(final ListGridRecord record, Integer colNum) { }
How can I forward mouse clicks to the ListGrid or how can I achieve my goal (to have multiple selection and also the visual effect of row selection) ?
SelectRecord works, but handling by my own multiple selection is not straight-forward and I am keeping this as a last solution.
Issue on : smartGwt 2.2 + gwt 2.0.3
Thanks in advance for the answer,
Remyx
Comment