Reputation: 3
For example Survey
How do I get a text field (API name: textName) to appear using the advanced conditional logic? I presume I will need something like this in the text field advanced conditions;
show = (survey.question = starter) && (survey.value = good)
Any help on how I can write this would be amazing! Thanks
P.S Very much new to coding/formIO!
I have tried using the values assigned to each question and value.
Upvotes: 0
Views: 409
Reputation: 226
Update the conditional show logic like this:
show = data.survey && data.survey.starter === 'good';
Upvotes: 0