Welcome to the WPF feedback portal. We’re happy you’re here! If you have feedback on how to improve the WPF, 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!

3
Votes

When collapsing a group, the grid's selection is cleared.

However, the event arguments for SelectionChanged do not reflect that change.



Attached is a simple project to reproduce the issue.


The test steps done with the console output for each of them:

  1. Expand the group:
    Added: 1 | Removed: 0 | TotalSelected: 0
  2. Select first row:
    Added: 1 | Removed: 1 | TotalSelected: 1
  3. Select second row:
    Added: 1 | Removed: 0 | TotalSelected: 2
  4. Collapse group:
    Added: 1 | Removed: 0 | TotalSelected: 0

    Expected output for this step:
    Added: 1 | Removed: 2 | TotalSelected: 0