Hi,
Within a screen of my app, I'm using both a data table and a lefthand navigation panel component. The navigation panel is hidden until a hamburger icon is selected, at which point the panel will cover the first two columns of the data table so the user can navigate within the panel. However, even when the panel is not visible, because it is ordered in front of the data table, I can't select records in my data table that fall underneath the panel. In turn, I'm wondering if there's a way to reorder the panel and data table when the panel is not visible (i.e. upon closing the panel via hamburger icon)?
I assume you are hiding the panel using the Visible property. The problem is that leaves the panel above the data table, it just isn't visible. So you are still clicking on the panel, not the data table. What you need to do is use essentially the same setting you are using for Visible in the Width property of the panel. So when the panel is not Visible the Width is set to 0, When it is Visible the Width is set to whatever value or formula you are currently using.
Taht will move the panel out of the way when its not visible, since there is no way that I know of to change the Z-index of the control at runtime.
User | Count |
---|---|
252 | |
126 | |
104 | |
50 | |
50 |