Skip to content

Commit

Permalink
DataGrid - Sticky columns: Fix auto scrolling during keyboard navigat…
Browse files Browse the repository at this point in the history
…ion of headers (#28418)

Co-authored-by: Alyar <>
  • Loading branch information
Alyar666 authored Dec 3, 2024
1 parent dd04a5e commit 06f2bab
Show file tree
Hide file tree
Showing 31 changed files with 551 additions and 244 deletions.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ test('Focus overlay should be displayed correctly if sticky columns are turned o
await t.expect(dataGrid.isReady()).ok();

await t
.click(dataGrid.getGroupRow(0).element)
.click(dataGrid.getGroupRow(0).getCell(1).element)
.pressKey('tab');

await takeScreenshot('datagrid_group_row_focused.png', dataGrid.element);
Expand All @@ -29,7 +29,7 @@ test('Focus overlay should be displayed correctly if sticky columns are turned o
await takeScreenshot('datagrid_adaptive_item_focused.png', dataGrid.element);

await t
.click(dataGrid.getGroupFooterRow().nth(0))
.click(dataGrid.getGroupFooterRow().nth(0), { offsetX: 5, offsetY: 5 })
.pressKey('tab');

await takeScreenshot('datagrid_group_footer_row_focused.png', dataGrid.element);
Expand Down
Loading

0 comments on commit 06f2bab

Please sign in to comment.