There is no special event for such case, but you can use onEditCell, just with additional check
grid.attachEvent(“onEditCell”,function(stage,id,ind,oldv,newv){
if (stage==2 && oldv!=newv)
do_something(); // do something when new cell value not equal to old value.
return true;
})