Hi there, if you still need, this can be put in place for Form Field question or Matrix Text Entry by using JS to display text inputs when an 'add' button is clicked. I've also added some code that adds a 'minus' button which will hide text inputs when clicked.
For Form Field question, add the below to the question's JavaScript in the OnReady section
var that=this.questionId;
jQuery("#"+this.questionId+" tr:not(:eq(0))").hide();
jQuery("").insertAfter("#"+this.questionId+" tr:last");
jQuery("#add").on('click',function(){
var c=jQuery("td.ControlContainer:visible").length;
jQuery("#"+that+" tr:eq("+c+")").show();
});
jQuery("").insertAfter("#"+this.questionId+" tr:last");
jQuery("#minus").on('click',function(){
var d=jQuery("td.ControlContainer:visible").length;
d -= 1;
jQuery("#"+that+" tr:eq("+d+")").hide();
});
For Matrix Text Entry question, add the below to the question's JavaScript in the OnReady section:
var that=this.questionId;
jQuery("#"+this.questionId+" tr.ChoiceRow:not(:eq(0))").hide();
jQuery("").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();
});
jQuery("").insertAfter("#add");
jQuery("#minus").on('click',function(){
var d= jQuery("tr.ChoiceRow:visible").length;
d -= 1;
jQuery("#"+that+" tr.ChoiceRow:eq("+d+")").hide();
});
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.