Hello,
I’m encountering an issue with Flowable forms where setting the readable
property through an expression does not seem to work as expected. Here’s the scenario:
I’m using the expression readable="${shouldRead}"
to dynamically set the readable
property. Despite setting the shouldRead
variable to either true
or false
, there’s no change in the form’s behavior. Interestingly, directly assigning readable="true"
or readable="false"
works as expected.
Here’s the snippet of my code for reference:
<activiti:formProperty id="name" name="Enter the name" type="string" default="${defaultName}" writable="true" readable="${shouldRead}"></activiti:formProperty>
Can anybody offer insights into what might be going wrong? Any suggestions or solutions would be greatly appreciated.
Thank you!