Check documentation for the latest version of dhtmlxSuite onRowIdChange DHTMLX Docs

onRowIdChange

fires after the ID of a row has been changed (changeRowId, setRowId, dataprocessor)

void onRowIdChange(string|number old_id,string|number new_id);
old_idstring|numberthe old ID of a row
new_idstring|numberthe new ID of a row

Available only in PRO Edition

Example

grid.attachEvent("onRowIdChange", function(old_id,new_id){
    //your code here
});

Back to top