How to resolve Nattable conflicts between DefaultRowSelectionLayerConfiguration and ButtonCellPainter on left mouse keydown event? -
i developing rcp application, , using nebula's nattable that. configer row selection (use defaultrowselectionlayerconfiguration) , , configer cell button (use buttoncellpainter) . both ui bing left mouse down event. what want is: when click left mouse button, button responds event while button of whole row selected. below part code: selectionlayer = new selectionlayer(columnhideshowlayer,false); selectionlayer.setselectionmodel(new rowselectionmodel<row>(selectionlayer, bodydataprovider, new irowidaccessor<row>() { @override public serializable getrowid(row rowobject) { return rowobject.getstatus(); } })); selectionlayer.addconfiguration(new defaultrowselectionlayerconfiguration()); class buttonclickconfiguration<t> extends abstractuibindingconfiguration { private final buttoncellpainter buttoncellpainter; public buttonclickco