:: Forum >>

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
Tuesday, January 3, 2006
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
Tuesday, January 3, 2006
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
Friday, January 6, 2006

This topic is archived.


Back to support forum

Forum search