Adding Row Selectors Prevents Row Editing
I use the following code to force my grid to allow edits:
//set whether cells can be edited or not
obj.setCellEditable(true);
This works fine. I need row selector so I add the following:
// enable row selectors
obj.setSelectorVisible(true);
obj.setSelectionMode("multi-row-marker");
Now I have row selectors, but can no longer edit the cells in the grid. If I remove the row selectors, I can again edit the cells. This problem appears in both IE and Firefox.
Any help is most appreciated.
//set whether cells can be edited or not
obj.setCellEditable(true);
This works fine. I need row selector so I add the following:
// enable row selectors
obj.setSelectorVisible(true);
obj.setSelectionMode("multi-row-marker");
Now I have row selectors, but can no longer edit the cells in the grid. If I remove the row selectors, I can again edit the cells. This problem appears in both IE and Firefox.
Any help is most appreciated.
Greg
April 3,