Button Visibility

1
I’m trying to control visibility of the Edit button on a data grid. Basically not show it but still show the control bar in which the edit button is located. When I put a false expression like below on the Edit button in my data grid, I get an error saying it’s not in a container?  Specifically, the error says, “An expression is configured even though there is no data container.” Is there another way I can hide the Edit button yet still show the control bar, e.g., Search button? [%CurrentDateTime%] = parseDateTime('2015-05-21', 'yyyy-MM-dd')
asked
3 answers
0

Perhaps using css? Style the button with:

visibility: hidden

answered
1

The user only wants to use the double-click feature and not see the Edit button. I’m disappointed the Visibility expression criteria doesn’t work – has anyone gotten that to work?

answered
0

What is the case for hiding the button? You can assign different roles to the microflow or page behind the button, so that the button will only be visible for the roles assigned to the action or page. 

answered