Categories | Question details Back To List | ||
How to fill a combobox How to fill a particular comboBox in a particaular row and particular column. in a dhtmlx grid. if i use mygrid.getCombo(0) all the comboBox in the column are getting filled with the same value. But i need to fill one combo box ia particular row. plz help Answer posted by Stanislav on Nov 26, 2007 03:42 In latest build of dhtmlxgrid you can use var z=grid.getCustomCombo(row_id,column_index); z.put(a,b); .... getCustomCombo wors the same as getCombo but will give access to combobox of specified cell |