Constant Sum with One Default Choice and One Respondent Choice--how to make disable default choice? | XM Community
Skip to main content
Solved

Constant Sum with One Default Choice and One Respondent Choice--how to make disable default choice?

  • February 19, 2025
  • 2 replies
  • 31 views

Forum|alt.badge.img+2

Question Type: constant sum

Answer Type: choices

 

Trying to do a Van Westendorp on a package. 

I want to say…

Here’s a package that’s worth $50. We want to add ABC to the package. How much more are you willing to pay for the package?

  • Package base price: $50
  • Value of ABC for it to be a good deal: RESPONDENT ANSWER
  • Total: PACKAGE + RESPONDENT

 

Is there a way to disable editing for the first choice (Package Base Price)?

I’m aware of this post, but it disables the entire constant sum--I just want the base price disabled. 

Best answer by TomG

Qualtrics.SurveyEngine.addOnload(function() {
  jQuery("#"+this.questionId+" .InputText").first().prop('disabled',true);
});

 

View original

2 replies

TomG
Level 8 ●●●●●●●●
Forum|alt.badge.img+27
  • Level 8 ●●●●●●●●
  • 5926 replies
  • Answer
  • February 19, 2025
Qualtrics.SurveyEngine.addOnload(function() {
  jQuery("#"+this.questionId+" .InputText").first().prop('disabled',true);
});

 


Forum|alt.badge.img+2
  • Author
  • Level 2 ●●
  • 7 replies
  • February 21, 2025
TomG wrote:
Qualtrics.SurveyEngine.addOnload(function() {
  jQuery("#"+this.questionId+" .InputText").first().prop('disabled',true);
});

 

you’re the best TomG!


Leave a Reply