move/edit to the next cell of grid

Hello DHTMLX SUPPORT,

I am using dhtmlxgrid with combo type column, is there a way to move/edit to the next cell when i click option of combo (like pressing tab keyboard) ?

thank you,
Cemang

here’s the screenshot



You may try to use the onEditCell event.
For example:

mygrid.attachEvent("onEditCell", function(stage,rId,cInd,nValue,oValue){ if(stage==2&&cInd==1){ // if the edited cell in the column with index "1" mygrid.selectCell(mygrid.getRowIndex(rId),cInd+1); setTimeout("mygrid.editCell()",5) } return true });