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.