Hi everyone,
I have an open entries question where each response is stored in its own variable (TE25x01, TE25x02, …).
On the following page, participants should rate their own entries. I’m already able to display their previous answers via HTML, and now I’d like to show a rating slider underneath each answer.
So essentially, for each entry, I want to display a corresponding rating question (AU01, AU02, …) only if the respective TE25x variable is not empty.
Conceptually something like:
if (value('TE25x01') !== '') {
showQuestion('AU01'); // this command doesnt exist, its just for understanding
}
What is the correct way to conditionally display individual questions based on whether TE25x01, TE25x02, etc. contain values?
Thanks in advance!