You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
// If the render container has an "explicit" header height (such as in the case that its header is smaller than the other headers and needs to be explicitly set to be the same, ue thae)
// Otherwise if the render container has an INNER header height, use that on the header cells (so that all the header cells are the same height and those that have less elements don't have undersized borders)
// // Otherwise if the render container has an INNER header height, use that on the header cells (so that all the header cells are the same height and those that have less elements don't have undersized borders)
0 commit comments