How to get DataChanges.

Hi,
I use Grid Data with Vue and I set EditMode to Normal.

Can I get data that has been a change? when I remove the record, edit some records, and add records.

I want to same function batchDataChanges If I use EditMode Batch but I must be using EditMode to Normal only.




1 Reply

KM Kuralarasan Muthusamy Syncfusion Team April 27, 2020 09:06 AM UTC

Hi StePzDJM, 
 
Thanks for contacting Syncfusion support. 
 
Yes, you can get the currently changed record details in the actionBegin grid event like as following code snippet, 
 
actionBegin: function(e) { 
    if (e.requestType === "save" || e.requestType === "delete") { 
      console.log(e.data); 
    } 
} 

Regards, 
Kuralarasan M 


Loader.
Up arrow icon