3.2.0

Editing and multi-row

Does anyone know if it is possible for a "multi-row" select-mode grid to have editable cells?
When I try to set the quick ref version to multi-row it stops being editable.

Thanks in advance
Chris Angus
January 3,
I do not believe that multi-select is working right now. So if I were you I would not out too much energy into it at this point.
Jim Hunter
January 3,
Hi Chris, regarding your need for multi-row" select-mode grid to have editable cells, i have been working on a similar requirement and sorta have a fair solution to it, here goes...

First u set the grid selection mode to 'multi-row'
obj.setSelectionMode("multi-row");

Then

obj.onCellDoubleClicked = function(event, column, row){
obj.setSelectionMode("single-cell");
obj.setCurrentColumn(column);
};

obj.onCurrentRowChanged = function(index){
obj.setSelectionMode("multi-row");
};

This should do the trick...

Cheers ^^



Lu_Bu @ Scandent
January 6,

This topic is archived.

See also:


Back to support forum