multi-row-select with editable
I want my grid to have an editable column and also multi row select with checkboxes.The user can update the value in the editable column and select multiple rows using checkboxes to pass the entered values to the controller.
I use - grid.setCellEditable(true) to make my column editable
The problem is -
1. if I use :
grid.setSelectionMode("multi-row-marker");
Then my column becomes uneditable
2. If I use :
grid.setSelectionMode("single-cell");
grid.setCellTemplate(new AW.Templates.CheckedItem, 0);
then the checkbox selection doesnt work
Any pointers?
I use - grid.setCellEditable(true) to make my column editable
The problem is -
1. if I use :
grid.setSelectionMode("multi-row-marker");
Then my column becomes uneditable
2. If I use :
grid.setSelectionMode("single-cell");
grid.setCellTemplate(new AW.Templates.CheckedItem, 0);
then the checkbox selection doesnt work
Any pointers?
ashii
February 8,