show alert Message after Insert, Update and Delete

hi

I am using 2.1version of Dhtmlx Grid.I want to show a friendly alert message after insert, update or deleted.

After insert alert(“The row is successfully Inserted”);

After Delete alert(“The row is successfully Delete”);

After update alert(“The row is successfully Update”);

thanks in advance plz reply me as soon as possible…





Thanking you

Rajendra Bhattacharya

You can use onAfterUpdate event of dataprocessor

dp.attachEvent(“onAfterUpdate”,function(sid,action,tid){
if (action!=“error”)
alert(“The “+action+” operation is successfully finished.”);
})