Group: Administrators
Posts: 13K,
Visits: 104K
|
Yes. radiobuttons and dropdowns have response properties just like any other element. You can sum those up and perform checks using /ontrialend logic, branching, <expressions> or the like.
<block myblock> / trials = [1=mypage] </block>
<surveypage mypage> / questions = [1=a; 2=b] / branch = [if (dropdown.a.response+dropdown.b.response!=4) surveypage.mypage] </surveypage>
<dropdown a> / options = ("0", "1", "2", "3", "4") </dropdown>
<dropdown b> / options = ("0", "1", "2", "3", "4") </dropdown>
|