Combobox on change event on dhtmlx grid

how can i add the select on chage event on combo box within a dhtmlx grid?

The grid already have onChange event for any editors in grid, you can use

grid.attachEvent(“onCellChanged”,function(id,index,value){

    //called each time when cell changed

})

or

grid.attachEvent(“onEditCell”,function(stage,id,index,value){
    if (stage==2){
        //called each time after cell edited
    }
    return true;

})

hi,
How to write onChange() event for a combobox in dhtmlxScheduler?

Thanks and Regards,
Karthick K.

Do you mean Time period select boxes or custom combo box at the lightbox?

hi,
i meant custom combo box at the lightbox.

Regards,
Karthick K.

If you put custom combo box to the lightbox which is instance of dhtmlxCombo, you can use dhtmlxCombo events. docs.dhtmlx.com/doku.php?id=dhtmlxcombo:events