Check documentation for the latest version of dhtmlxSuite onUndo DHTMLX Docs

onUndo

fires after the undo operation is implemented

void onUndo(string|number rowId);
rowIdstring|numberthe id of a row

Available only in PRO Edition

Example

mygrid.attachEvent("onUndo",function(rId){
    //your code here
})

Back to top