-
Notifications
You must be signed in to change notification settings - Fork 160
Grid Master Detail #6119
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Grid Master Detail #6119
Conversation
…ain correctly positioned when grouping is applied.
…b to/from details row.
// persist focused cell | ||
const el = this.grid.selectionService.activeElement; | ||
if (isVirtualized && el) { | ||
const cell = this.grid.gridAPI.get_cell_by_visible_index(el.row, el.column); | ||
if (cell) { | ||
cell.nativeElement.focus(); | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This won't always persist the focus on the right cell element as notifyChanges
is run on the next detection cycle and the layout of the grid body can shift up/down
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Related to #6191
…cusable element in details view. Updating tests.
Hi,
|
Closes #5880
To do:
Additional information (check all that apply):
Checklist:
feature/README.MD
updates for the feature docsREADME.MD
CHANGELOG.MD
updates for newly added functionalityng update
migrations for the breaking changes