Hi, Is there any possibilities to save matrix question response based on the selected value.
Sample JSON :
Code{
"type": "matrix",
"name":"MatrixQuestionArray",
"columns": [
{
"value": "Yes",
"text": {
"default": "Yes"
}
},
{
"value": "No",
"text": "No"
}
],
"rows": [
{
"value":"option1",
"default": "option1",
},
{
"value": "option2",
"text": "option2"
},
{
"value": "option3",
"text": "option3"
},
{
"value":"option4",
"text": "option4",
}
]
},
currently i'm getting all the details in MatrixQuestionArray like below:
Current Behaviour
"MatrixQuestionArray": {"option1": "No", "option2": "Yes", "option3": "Yes", "option4": "No"},
but, Instead of this i'm looking for below format.
Expected Behaviour
"MatrixQuestionArray": [
"option2",
"option3"
]