Check documentation for the latest version of dhtmlxSuite onEditCancel DHTMLX Docs

onEditCancel

fires when the edit operation was canceled

void onEditCancel(string|number rowId,number colInd,mixed value);
rowIdstring|numberthe id of a row
colIndnumberthe index of a column
valuemixedthe value of a cell

Example

mygrid.attachEvent("onEditCancel",function(rId,cInd,val){
    //your code here
});

Back to top