Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions packages/pluggableWidgets/datagrid-web/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),

## [Unreleased]

### Fixed

- We fixed an issue where virtual scrolling prevented data loading when the grid had many columns, showing only the initial page of rows until the user performed a horizontal scroll or zoom.

## [3.9.0] - 2026-03-23

### Changed
Expand Down
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 @@ -135,5 +135,10 @@ export class GridSizeStore {
const overflows = gridBody.scrollHeight > viewportHeight;
this.gridBodyHeight = viewportHeight - (overflows ? 0 : VIRTUAL_SCROLLING_OFFSET);
this.lockedAtPageSize = currentPageSize;

// Fallback: if locking didn't produce a scrollbar, load more rows
if (this.hasMoreItems && gridBody.scrollHeight <= gridBody.clientHeight) {
this.bumpPage();
}
}
}
Loading