Hi inanc,
Thanks for contacting Syncfusion support.
Yes, we have analyzed your query and suggest you use the “actionComplete” event of Grid. By default the actionComplete event will be triggered after each successful Grid actions. So for displaying a message after successful CRUD operations use your message dialog codes by checking for the requestType as “save” and action as “edit”.
Since the requestType as save and action as add will be used for every successful save and insert actions. Please refer the code example below,
|
function actionComplete (args) {
if (args.requestType === "save" && args.action === "edit") {
//Your dialog model to display the message after successful insert and edit actions
setTimeout(function() {
alert("Successfully added");
}, 10);
}
} |
Please get back to us if you need further assistance.
Regards,
Thiyagu S