Check documentation for the latest version of dhtmlxSuite getColumnCombo DHTMLX Docs

getColumnCombo

returns dhtmlXCombo column object

object getColumnCombo(number column_index);
column_indexnumberthe column index
objectdhtmlXCombo column object

Example

//getting dhtmlXCombo column object 
myCombo = myGrid.getColumnCombo(column_index);
 
//using it later with dhtmlxCombo API
myCombo.enableFilteringMode(true);

Back to top