Apply "Request Response" on Open End Text Box Only | XM Community
Skip to main content
Question

Apply "Request Response" on Open End Text Box Only

  • September 12, 2023
  • 4 replies
  • 106 views

Forum|alt.badge.img+1

Hello Qualtrics Community, 

Is it possible to do a soft check (like a request response) on an Other open-end text box only? This would be applied in multiple choice questions that allow either one or multiple answers. To be clear, I do not want to use a “Request response” on the entire question. I only want to point out to the respondent that they did not enter any information to accommodate their “Other” response selection. 

 

Any advice would be greatly appreciated. 

4 replies

Nam Nguyen
QPN Level 8 ●●●●●●●●
Forum|alt.badge.img+29
  • QPN Level 8 ●●●●●●●●
  • 1091 replies
  • September 12, 2023

Put force response in the “Other” option @JMSurveys . Hope it helps


Swanand_Chavan_Ugam
QPN Level 5 ●●●●●
Forum|alt.badge.img+26

Hello @JMSurveys ,

Currently there is no direct way to provide this option however a work around will be to add an additional open ended question which can be shown only if Other option is selected. And this will give you a “Request Response” feature too.  


Forum|alt.badge.img+1

Hi @JMSurveys,
 

You can try with a survey question validation to answer a Question or request that they required an answer before leaving a page.


Forum|alt.badge.img+3
  • 21 replies
  • September 14, 2023

Add Js to other text box..

under custom JavaScript enter following code:

Qualtrics.SurveyEngine.addOnload(function() {
    var otherTextbox = jQuery("#"+this.questionId+" .InputText");
    otherTextbox.blur(function() {
        if (jQuery(this).val().trim() !== "") {
            Qualtrics.SurveyEngine.setEmbeddedData("OtherValidation", "1");
        }
    });
});

 

 


Leave a Reply