I am having trouble with the selectCell function while in e

I am having trouble with the selectCell function while
in edit mode.  I can null out the field but the select does not open the
field for editing.


selectCell function only selects a cell by default. To
force cell edit you need to set 5th parameter to true:


            
grid_1.selectCell(rowId,cellInd,false,false,true);


 or use next command combination:


           
 grid_1.selectCell(rowId,cellInd);


           
grid_1.editCell()<o:p></o:p>