Hiding Labels

1
Is there a way of hiding labels and then showing them depending on the condition of another field
asked
1 answers
1

Make sure that you have a boolean that will indicate the condition, or an enumeration, then use the option to set the visibility to conditional. See https://world.mendix.com/pages/releaseview.action?pageId=2852001 So if the condiotn needs to be based on string field A if it is empty don't show the label, else show the label e.g. Create a boolean that indicates that the field is empty or filled and set the conditional visibilty on the row containing the label to use this field.

answered