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
when the ui-grid's height is higher than a value which is not fixed, I scroll down to the bottom, but the ui-grid backs to top immediately. I don't know why and the value usually is 690px @mportuga
The text was updated successfully, but these errors were encountered:
I am so happy for that I have found the solution of this problem.
(1)Viewing the source code, I find that the height of .ui-grid-canvas is calculated by the height of row.
(2)the real height of row in my grid is '40px', because I set font-size to be '16'px and I set the padding-top, and so on
(3)but the defult height of row is 30
(4)so the height of '.ui-grid-canvas' is miscalculate
(5)To fix it ,I set rowHeight to be 40
(6)Finally, the scrolling is normal
when the ui-grid's height is higher than a value which is not fixed, I scroll down to the bottom, but the ui-grid backs to top immediately. I don't know why and the value usually is 690px @mportuga
The text was updated successfully, but these errors were encountered: