Conditional Fields not working

Hello everyone,
I have a page with a record block.
In this record block I have a Select/Dropdown component called services and a text input field called other. It’s a multivalue checkbox group
I added a conditional field that the other field should be shown when record.values.services == 'a'.
a is the first value of the services select/dropdown but for some reason, whenever I select a, nothing happens.

Since its a multivalue field you’re working with arrays, therefore you have to use has (Expression Function Reference :: Corteza Docs)

For example has(record.values.services,"a")

Make sure to use doublequotes ("), since singlequotes wont work(')

1 Like

Works great! Thank you very much :smiley:

1 Like