Visibility of container for attribute OR role

0
If I have a container I would like to show it based on the value of a constant OR if you have a special role. So the first part works, and we can toggle visibility on or off for roles, but how do I also say ‘you can always see this container if you have the role Admin’ ?
asked
1 answers
2

I don’t think you can with the default Mendix options. You can combine the expression with the ‘ show...for selected users’  checkbox bellow it, but then you get an ‘and’  expression.

You could just create a copy of the grid and always show this for the admin and then for this grid, do not show it to the admin.
Or use a widget like this: https://marketplace.mendix.com/link/component/2539 where you can set the visibility with a microflow or nanoflow

answered