PowerSnippets - Hide Controls
- Written by Nils Eibenstein
- Microsoft Power Platform
Decluttering the DOM tree when using large tables
So the inevitable has happened. A customer or colleague has built a gallery to use as a table showing loads of columns and extending over the canvas' border. Your app performance is degrading and due to that, sidescrolling becomes more of a drag than a pleasat experience.
Simply modify the visbility value of the controls in the following manner:
If([Control].X + [Control].Width >= 0 && [Control].X <= 1360;true;false)
This ensures that the control is hidden when not within the boundaries of the canvas. It is also really helpful when designing large tables within galleries.
That's all folks.