Is there a way to hide and show questions based on factors other than the currently filled in questions and their values?
We are using visibleIf to show/hide questions depending on question answers, but there is one set of questions we want to show depending on whether the user is logged in to our application or not.
Ideally we would do something like "visibleIf": "({hasAccount} = false" BUT hasAccount would not be a questionName, it would be something our application determines and sets itself.
Any help/advice on how to do this appreciated! Thanks in advance
Should probably clarify that it is not as simple as loading one set of questions for a logged in user and another for a logged out user, as we potentially log them in halfway through the survey via AJAX, once they have entered their email in the email question.