I want to auto-fill responses to some cells in a side-by-side matrix based on previous responses - I understand we can capture the data with piped/ embedded text option, but how can we assign the values to the cells ( I have drop down option for the side-by-side matrix)
Page 1 / 1
@KumarA_156,
Let's says the select you want change the value of is the jQuery object stored in the variable 'select' and you want to change the selected value to choiceid 1, then:
```
select.val("1").change();
```
Let's says the select you want change the value of is the jQuery object stored in the variable 'select' and you want to change the selected value to choiceid 1, then:
```
select.val("1").change();
```
Leave a Reply
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.