Welcome to the Vue feedback portal. We’re happy you’re here! If you have feedback on how to improve the Vue, we’d love to hear it!

  • Check out the features or bugs others have reported and vote on your favorites. Feedback will be prioritized based on popularity.
  • If you have feedback that’s not listed yet, submit your own.

Thanks for joining our community and helping improve Syncfusion products!

2
Votes

I have two grids. The first one is in multiple selection mode. When a row is selected in the first grid, the second grid reacts by selecting its row. This selection unselects all previously selected rows in the first grid except the last one.

It looks like the grids are connected somehow and they should be independent.

This behavior seems to be independent from framework used.

Below is example in Angular

https://stackblitz.com/edit/angular-veg5o9?file=app.component.ts


Steps is a reproduce problem:

- Select any row in the first grid

- Hold down Ctrl / Cmd key

- Select another row in the first grid

- Multiple selection doesn't work


Steps to make it work:

- Comment line 26 in app.component.ts (this.grid2.selectRow (0);) and save changes

- Select any row in the first grid

- Hold down Ctrl / Cmd key

- Select another row in the first grid

- Multiple selection does work