fires when the edit operation was canceled
| rowId | string|number | the id of a row |
| colInd | number | the index of a column |
| value | mixed | the value of a cell |
mygrid.attachEvent("onEditCancel",function(rId,cInd,val){
//your code here
});
Back to top