Disable a button

0
I want to disable a button and a textfield based on an attribute in my enitity. I have disabeld the textfield easily by setting the editability to conditionally, but I'm unable to find this property for the action button I've used. I only see the visibility property, but I don't want to use that.    
asked
2 answers
2

For the button I've solved in the following manner in one of my applications:

Make your microflow button conditional visible

Add another action button that resembles your microflow button but which does nothing and is conditional visible. Add the class disabled to the button, this will ensure that the button is rendered as disabled.

answered
0

With version 6.10 of the modeler, elements with conditional visibility actually get removed from the DOM. This might be a solution to your problem, as you would be able to use the visibility property then.

answered