Hello,
I have a checkbox for each lines in my grid. I can select several CheckBox BUT when i click on a line (not on the checkbox column), this line is checked and all the others are deselected. I'd like to have this behavior now : when i click on a line, it doesn't affect the checkboxes.
Code:
CheckBoxSelectionModel<BeanModel> sm = new CheckBoxSelectionModel<BeanModel>();
ColumnModel cm = new ColumnModel(Arrays.asList(sm.getColumn(),
new ColumnConfig("cat", "cat", 50)));
grid = DataUtils.createSimpleGrid(proxy, cm);
grid.setSelectionModel(sm);
grid.addPlugin(sm);
Regards,
Vinc