Row multiselect with CTRL key not working properly

Hello, 

I have noticed that row multiselect using CTRL key is not working properly. With that functionality args.data contains only last selected record instead of array of records. 

Kind regards
Damian Szwajkos


3 Replies

AG Ajith Govarthan Syncfusion Team January 19, 2022 05:27 PM UTC

Hi Damian, 

Thanks for contacting Syncfusion support. 

We have validated the provided information and we have confirmed it as a bug and logged the defect report “All the selected row data is not returned in selection events when select rows with CTRL key”. Thank you for taking the time to report this issue and helping us improve our product. At Syncfusion, we are committed to fixing all validated defects (subject to technological feasibility and Product Development Life Cycle ) and including the defect fix in our upcoming weekly release which is expected to be rolled out on 9th February 2022. 
    
You can now track the current status of your request, review the proposed resolution timeline, and contact us for any further inquiries through this link.    
    

Until we provide fix for the reported issue, we suggest you use the getSelectedRecords event to get all the selected row data from the Grid component with rowSelected and rowSelecting events. For your convenience, we have attached the sample, please refer them for your reference. 

Code Example: 
App.component.ts 

rowSelected(args) { 
    console.log(args); 
  } 

  rowSelecting(args) { 
    console.log(this.grid.getSelectedRecords());  // use the getSelectedRecords event to get all the selected records. 
    console.log(args); 
  } 


Regards, 
Ajith G. 












RS Rajapandiyan Settu Syncfusion Team February 10, 2022 12:55 PM UTC

Hi Damian,   
   
Sorry for the inconvenience caused.   
    
We have fixed the issue internally, But due to some unforeseen circumstances, the fix of this issue(“All the selected row data is not returned in selection events when select rows with CTRL key”) was not included in our weekly patch release (v19.4.50). Currently, we are working on this with high priority and will include the fix in our next weekly release Feb 16th, 2022. 
    
We will update you once the fix is rolled out. Until then, we appreciate your patience.   
   
Regards,   
Rajapandiyan S  



PS Pavithra Subramaniyam Syncfusion Team February 18, 2022 05:24 AM UTC

Hi Damian,   

Thanks for your patience.  

We are glad to announce that we have added the fix for the issue –“All the selected row data is not returned in selection events when select rows with CTRL key” in our patch release (v19.4.52). So please update your packages to latest version to include the fix.  

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

Regards,  
Pavithra S  


Loader.
Up arrow icon