Forum Discussion
PedroMendez
2 days agoCommunity Member
Multiple choice matrix/grid
Hi Community, I am devoloping a multiple-choice matrix quiz. It is basically a table with different examples with true-false options to choose from. The issue I am having, and can't figure out...
MichaelHinze
2 days agoCommunity Member
To ensure that only one button within each row can be selected, you can group the buttons into a buttonset (one for each row). Here is some info on button sets.
For the Correct/Incorrect feedback, you could use the state of a button in a trigger. Change the state of object Row1Feedback to Correct, if Row1TrueButton is Selected else Change the state of object Row1Feedback to Incorrect.
Or (as you already figured out), set up a variable for each row, the variable's value is changed every time a radio button in the row is clicked. Then based on the variable value, show the feedback.