dhtmlxgrid Column type CO

Hello,



I have a grid with column type of co



combo = rGrid.getCombo(“6”);

combo.put(“1”,“1”);

combo.put(“2”,“2”);

combo.put(“3”,“3”);





cellLevelCombo = rGrid.getCustomCombo(rowId,cellInd);



I try to do cellLevelCombo.openSelect(); But I get error.



How can I implement something similar to openSelect for cellLevelCombo



Thanks.

The only way to open select - start edit process for cell in question

mygrid.selectCell(mygrid.getRowIndex(rowId),celInd);
mygrid.editCell();