The visibility condition in a complex component does not work

I have a complex component on a form. It contains a textfield that is visible when the checkbox is checked.
image
the textbox also listens to the checkbox.
image
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:
image
image

As you can see you are referring to ‘GesCheckbox1’ but on the conclusion it is ‘GesComplexComponent1.GesCheckbox1’
image

After adding ‘@’ in the complex component, the condition on the form is valid
image
image

getValue("@GesComplexComponent1.GesCheckbox1") == "true"
1 Like