Dynamic combo content in dhxGrid

Hi,

I have this big grid in which a column is of “combo” type. I would like each line to have a different dataset in this combo (different options).
I tried using myGrid.getColumnCombo(2), but then every combo has the same dataset.

If possible, I would like to initialise this in a json.

Any ideas ?

Please, try to use the getCelCombo() method:
combo = grid.cells(rowId,cellIndex).getCellCombo();

Here you can find a tutorial about the init of the “combo” and populating the options in the grid:
docs.dhtmlx.com/3.6/doku.php?id= … cell_combo

Thanks a lot, it seems to work.