Incorrect value returned by radio button. | XM Community
Skip to main content
Question

Incorrect value returned by radio button.


Forum|alt.badge.img+3
  • Level 2 ●●
  • 11 replies

I have 7 radio button on my survey.  Values 1 to 7 in Recode values and advanced scoring.

They all return the correct value except for the second one.  It returns 8 and not 2.

Where is this value 8 coming from?

The ID of the button is QR~QID5~1~8, it should be QR~QID5~1~2?

Anyone had this before?

5 replies

MatthewM
Level 6 ●●●●●●
Forum|alt.badge.img+30
  • Level 6 ●●●●●●
  • 1069 replies
  • August 15, 2023

That could have happened if that choice was created last, then moved into the second position.


Forum|alt.badge.img+3
  • Author
  • Level 2 ●●
  • 11 replies
  • August 18, 2023

Thank you Mathew. 

In the results we have a column SC0 which contains the correct value of the radio buttons selected.

Can this be access by JavaScript in Qualtrics.SurveyEngine.addOnPageSubmit when the survey ends?

 


TomG
Level 8 ●●●●●●●●
Forum|alt.badge.img+27
  • Level 8 ●●●●●●●●
  • 5934 replies
  • August 18, 2023
VJTM wrote:

Thank you Mathew. 

In the results we have a column SC0 which contains the correct value of the radio buttons selected.

Can this be access by JavaScript in Qualtrics.SurveyEngine.addOnPageSubmit when the survey ends?

 

Yes, get the recode value of the selected radio button:

Qualtrics.SurveyEngine.addOnPageSubmit(function() {
	var recode = this.getChoiceRecodeValue(this.getSelectedChoices()[0]);
});

  


Forum|alt.badge.img+3
  • Author
  • Level 2 ●●
  • 11 replies
  • August 30, 2023

I have implemented the above code 

var recode = this.getChoiceRecodeValue(this.getSelectedChoices()[0]);

But I only get a 1 or a 2.  There are 2 rows of radio buttons.  How do I get the Recode value, 1 to 7?  The recode values are correct in the survey.


TomG
Level 8 ●●●●●●●●
Forum|alt.badge.img+27
  • Level 8 ●●●●●●●●
  • 5934 replies
  • August 30, 2023
VJTM wrote:

I have implemented the above code 

var recode = this.getChoiceRecodeValue(this.getSelectedChoices()[0]);

But I only get a 1 or a 2.  There are 2 rows of radio buttons.  How do I get the Recode value, 1 to 7?  The recode values are correct in the survey.

What type of question is it?  The code is for a single select multiple choice.