Sort event capture

Hi ,

We are trying to implement certain logic on sorting of the pivot grid. How can we capture the on sort applied event in the pivot grid.

Thanks,
Dileep gagan R

2 Replies 1 reply marked as answer

SS Saranya Sivan Syncfusion Team November 25, 2020 12:52 PM UTC

Hi Dileep gagan, 
  
We have logged your requirement – “To provide event support for UI actions” as a feature task and it will be available in any one of our upcoming release  You can track the same by using the following link:   
  
  
We appreciate your patience until then. 
  
Regards, 
Saranya Sivan. 


Marked as answer

MM Manikandan Murugesan Syncfusion Team December 20, 2021 05:00 PM UTC

Hi Dileep, 
 
We are glad to announce that our Essential Studio 2021 Volume 4 Main Release v19.4.0.38 is rolled out and we have provided support To provide event support for UI actions”. Kindly refer to the following code example and sample to detect sorting action in the pivot table using “actionBegin” event. 
 
Code Example: 
  <ejs-pivotview 
    (actionBegin)="actionBegin($event)" 
  > 
  </ejs-pivotview> 
   
  actionBegin(args) { 
    if (args.actionName === 'Sort field') { 
      console.log(args); 
    } 
  } 
 


We thank you for your support and appreciate your patience in waiting for this release. Please get in touch with us if you would require any further assistance. 

Regards,  
Manikandan 


Loader.
Up arrow icon