I have a matrix with two columns. I want to get the inputs of both columns on page submit. I have been using
getChoiceValues, and I have no problem getting the value of the right column. How can I get the value of the left column?
Qualtrics.SurveyEngine.addOnPageSubmit(function()
{
// this does not work
let left_column_choice = this.getChoiceValue(0);
// this works for sure
let right_column_choice = this.getChoiceValue(1);
});