I have a complex component on a form. It contains a textfield that is visible when the checkbox is checked.
the textbox also listens to the checkbox.
I don’t see any bug, these conditions work on the application.
When You reference a component via getValue in a custom component You have to use special character ‘@’ before the component name.
Your component and condition without ‘@’ looks like this on the form:
As you can see you are referring to ‘GesCheckbox1’ but on the conclusion it is ‘GesComplexComponent1.GesCheckbox1’
After adding ‘@’ in the complex component, the condition on the form is valid
getValue("@GesComplexComponent1.GesCheckbox1") == "true"
1 Like