Start Building Professional
Web Apps Today


 
Categories Question details Back To List
Question  posted on Jan 20, 2009 05:58
open dhtmlx forum
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.
Answer posted by Support on Jan 20, 2009 08:32
The only way to open select - start edit process for cell in question

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