-
Notifications
You must be signed in to change notification settings - Fork 2.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(uiGridHeader): Fix header height growth bug
Header cells were growing in height due to a calculation bug where the grid was reading the height of the entire header element rather than just the repeater where the header cells were contained. That means that a custom header with extra stuff in it would cause headers to grow in height on each canvas refresh. This change splits header height calculations in two: one for the headers themselves, which keeps headers between render containers consistent in height, and another for header cells which uses the header canvas height to keep header cells the same height. Fixes #2781
- Loading branch information
Showing
3 changed files
with
61 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters