Handling onChange event on combo column

Hi,

I’m looking for a way to handle an onChange event, on a combo type column.

It’is possible ?

Thanks reading

You can use “onEditCell” or “onCellChanged” event of the dhtmlxGrid object.
docs.dhtmlx.com/doku.php?id=dhtmlxgrid:events

Thanks for answering,

i used the getColumnCombo function and next, an attachEvent on the collected combo.

You should attach event to the dhtmlxGrid object.

grid.attachEvent(“onEditCell”, function(stage,rId,cInd,nValue,oValue){});