Check documentation for the latest version of dhtmlxSuite getCustomCombo DHTMLX Docs

getCustomCombo

gets the combobox specific for the cell in question

object getCustomCombo(string|number id,number ind);
idstring|numberrow id
indnumbercolumn index (the cell must have 'co', 'coro' or 'combo' type)
objectthe combobox specific for the cell in question

Example

var combo=myGrid.getCustomCombo("row1",0);

Back to top