When use escape to exit edit mode, the onEditCell Event

hi.

When use escape to exit a cell’s edit mode, the onEditCell Event didn’t trigger.

Thanks!

Unfortunately this is the designed behavior.
You may try to use onEditCancel event:

[code]grid.attachEvent(“onEditCancel”, function(rId,cInd,value){

});[/code]

hi.
it works.
thanks!