Check documentation for the latest version of dhtmlxSuite getCombo DHTMLX Docs

getCombo

gets Combo object of the specified column

object getCombo(number col_ind);
col_indnumberindex of the column to get combo object for (column must have 'co', 'coro' or 'combo' type)
objectCombo object of the specified column

Example

//get combo object of the first column 
var combo=myTreeGrid.getCombo(0);

Details

use the method to change select box value for cell before editor opened

Back to top