Is your feature request related to a problem? Please describe.
When a cell enters edit mode, the row is not always selected.
This makes it unclear which row is being edited and can require extra clicks to select it manually.
For example in File Explorer, while editing the cell, the row is selected -

Describe the solution you'd like
When editing starts in a cell:
- Automatically select the corresponding row
- Keep the row selected while editing
Optional:
- Add a property like SelectionFollowsEdit to control this behavior
Why this helps
- Clearer UX — users can easily see which row is being edited
- Matches expected behavior from typical data grid controls
- Reduces boilerplate for developers
Describe alternatives you've considered
- Manually setting SelectedItem in edit/focus events
- Handling focus inside editing controls
These approaches add extra code and are not reliable.
Additional context
I have POC for this and would like to contribute and open a PR.
Is your feature request related to a problem? Please describe.
When a cell enters edit mode, the row is not always selected.
This makes it unclear which row is being edited and can require extra clicks to select it manually.
For example in File Explorer, while editing the cell, the row is selected -

Describe the solution you'd like
When editing starts in a cell:
Optional:
Why this helps
Describe alternatives you've considered
These approaches add extra code and are not reliable.
Additional context
I have POC for this and would like to contribute and open a PR.