Reply To: Randomizing the order of rating scales appearing on the same page

PennController for IBEX Forums Support Randomizing the order of rating scales appearing on the same page Reply To: Randomizing the order of rating scales appearing on the same page

#5026
Jeremy
Keymaster

Hi,

Your use of the Selector element to shuffle the Scale elements is on the right track, but then calling .wait on that Selector means that you want your participant to simply click on one of the two scales. You should probably replace that .wait() command with .disable() to turn your Selector into a dummy element (you just use it to shuffle the Scales) and add a Validation button at the end where you check that both scales have an option selected, like this:

newButton("Validate")
  .print()
  .wait( getScale("active_scale").test.selected().and(getScale("exciting_scale").test.selected()) )

Jeremy