Set Text Box response from embedded data | XM Community
Skip to main content
Question

Set Text Box response from embedded data


Forum|alt.badge.img+2

I want to pull a query string from the URL and use the value as the default value for a text question.  The value is coming from an internal site.

I have created and set an embedded data element (working fine) but cannot get the value to show in the response text box.

I tried a few things after setting GRP_ID variable to the embedded data:

      jQuery(this).val(GRP_ID) ;

      jQuery("#QR\\~"+this.questionId).val(GRP_ID) ;

     questionId.setCodeValue(1,GRP_ID) ;

 

What is the proper syntax to refer to and set the text box value?

4 replies

TomG
Level 8 ●●●●●●●●
Forum|alt.badge.img+27
  • Level 8 ●●●●●●●●
  • 5934 replies
  • August 2, 2023

You don’t need JavaScript to do this.  In your text entry question click ‘Default choices’ then pick  Embedded Data Field → GRP_ID.


Forum|alt.badge.img+2
  • Author
  • 1 reply
  • August 2, 2023

That works great! 

However, if I wanted to do some transformation on the embedded data before setting the value, I could generate the final value with javascript and then how would I set this calculated value as the default value?


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

That works great! 

However, if I wanted to do some transformation on the embedded data before setting the value, I could generate the final value with javascript and then how would I set this calculated value as the default value?

Like this:

Qualtrics.SurveyEngine.addOnload(function() {
  var mystring = "string value";
  jQuery("#"+this.questionId+" .InputText").val(mystring);
});

 


rgupta15
Level 4 ●●●●
Forum|alt.badge.img+8
  • Level 4 ●●●●
  • 92 replies
  • August 3, 2023

You can also try writing it as,

jQuery(this).input(type=”text”).val(Qualtrics.getEmbeddedData(‘GRP_ID’))