enable respondent to add extra response fields | XM Community
Question

enable respondent to add extra response fields



Show first post

34 replies

Userlevel 6
Badge +5
I'm sure the code could be modified to work with form fields but I don't really know Javascript. Good luck!
Ok @uhrxx005. Got it working now. The matrix table is not ideal for my usage situation, but it's the closest I've come to a solution so far. Thanks.
Userlevel 6
Badge +5
In the survey builder you will have to set the matrix row number to be the max number you want to allow, then in the code you determine how many are visible before the button. You can also change what the button says.
@uhrxx005. Ok this seems a bit better. The code produces a button, but the button does not do anything.

!
Userlevel 6
Badge +5
I just took a closer look. I believe you have to set it up as a text entry matrix question instead of a form field.
Hi @Kate. Your solution can maybe work as a workaround if I don't figure this out. Thanks for the input!
Thanks for the input @uhrxx005. Tested your code in the .addOnReady section, but I can't seem to get it to work. Nothing happens...
Userlevel 6
Badge +5
I have used this code that I found on the community awhile back for a similar problem. It adds a button to the form field that participants can press to make more fields.

Qualtrics.SurveyEngine.addOnReady(function()
{
var that=this.questionId;
jQuery("#"+this.questionId+" tr.ChoiceRow:not(:lt(3))").hide();
jQuery("<input type='button' id='add' value='Add Client' name='+' />").insertAfter("#"+this.questionId+" tr.ChoiceRow:last");
jQuery("#add").on('click',function(){
var c= jQuery("tr.ChoiceRow:visible").length;
jQuery("#"+that+" tr.ChoiceRow:eq("+c+")").show();
});

});
Userlevel 7
Badge +19
I have something similar in one of my surveys but... IDK if it will apply here.

What I do in an early question is ask a respondent, "How many Contracts would you like to tell me about?" and they select a number from a drop down menu. Then the following questions are for Contract 1, Contract 2, etc.. and I simply display the additional information using the Question Display logic that if Q1 =1, then show Contract 1. If Q1=2, then show Contract 1 and 2.

This may or may not work for you. But I thought I'd share!

Leave a Reply