Event saveComplete not firing

Hello,

I am trying to execute some scripts after the saving is completed in the spreadsheet but the event saveComplete is not emitted.

Screenshot 2021-08-31 at 14.54.24.png

ej2-vue-spreadsheet version: 19.2.57 


4 Replies

JS Janakiraman Sakthivel Syncfusion Team September 2, 2021 04:07 AM UTC

Hi Lucas Lima, 
 
Thank you for contacting Syncfusion support. 
 
We have checked your reported query and we need to validate more on this. So, we will update you the further details on September 3 rd, 2021. We appreciate your patience until then. 
 
Regards, 
Janakiraman S. 



AS Aravinthan Seetharaman Syncfusion Team September 7, 2021 01:04 PM UTC

 
Thanks for the patience. 
 
We have checked your issue. We can resolve this issue in sample level by setting args.isFullPost as false in beforeSave event of Spreadsheet. Please refer the below code snippet and sample. 
 
<ejs-spreadsheet ref="spreadsheet" :openUrl="openUrl" :saveUrl="saveUrl" :created="created" :beforeSave="beforeSave" :saveComplete="saveComplete"> 
 
  methods: { 
    beforeSave: function(args){ 
      args.isFullPost = false; 
    }, 
    saveComplete: function(args){ 
      console.log(args); 
    } 
  } 
 
 
 
 Could you please check the above details, and get back to us, if you need assistance on this. 
 
Regards, 
Aravinthan S 



LL Lucas Lima September 7, 2021 02:26 PM UTC

Hi Aravinthan,

It worked, Thank you!!



AS Aravinthan Seetharaman Syncfusion Team September 7, 2021 02:48 PM UTC

Hi Lucas, 
 
Thanks for the update. 
 
We are happy to hear that your issue has been resolved. Please feel free to contact us if you need any further assistance on this. 
 
Regards, 
Aravinthan S 


Loader.
Up arrow icon