Hi Faqih,
Greetings from Syncfusion support.
Based on your query, you want the dialog to be shown
even after you press the save button. Your requirement can be achieved using
the actionBegin event of the EJ2 Grid.
Please refer the below code example.
|
actionBegin(args) {
if (args.requestType == 'save') {
args.cancel = true;
}
}
|
Sample: https://stackblitz.com/edit/react-qvcb25?file=index.js
Please get back to us for further details.
Regards,
Joseph I.