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
Here is plunker that you need to run in a separate window view to see the issue.
The problem is due to the 'body' container 'div' to bump into the 'left' container and browser layout engine forcing it down which causes a flicker until auto-resize timer corrects it by recalculating the sizes.
Im my app I fixed it by using this style: .ui-grid-render-container.ui-grid-render-container-body { left: 30px; top: 0; position: absolute; }
You may want to look into this idea of using 'absolute' positions instead and just calculate offsets and set them as styles in your buildStyle() method.