How do I add values to a combo box using the dhtmlXGridObje

How do I add values to a combo box using the
dhtmlXGridObject?


The
grid has method getCombo, which return collection of combobox values for
selected column.<o:p></o:p>



<o:p> </o:p>


So
you need to use next syntax


                mygrid.getCombo(5).put(1,“on”
);


where:



                5 - is column ID


                1,“on” - label/value
pair<o:p></o:p>