hi,
I have locked few rows .If i call mygrid.deleteRow() it must not delete the locked rows how to handle it .
mygrid.attachEvent(“onBeforeRowDeleted”,function(id){
if (this.getRowById(id)._locked) return false; //block deleting
return true;
});