hey there,
I would like to know how I configure / fill a single combobox within the dhtmlxGrid.
Currently I am using the standard version.
Thanks in advance.
Greetinx Patrick
If you mean “co” excell you can fill it by js commands, similar to next
var combo=grid.getCombo(5); // 5 - index of column
combo.put(1,“One”);
combo.put(2,“Two”);
combo.put(3,“Three”);
Combo can be filled from grid xml as well, if you are using configuration from XML
Column label
One
Two
Three
Also, if you need specific options set for some cell in grid, you can specify options directly inside cell tag
1 << this is cell value
One
Two
Three
Hey,
thanks for the quick reply. I’ve implemented it into our test application and it works fine.
very nice code
Thx
P.