In a survey such as the following, the dropdown
cells use the choices
defined in the matrix, but tagbox
cells do not. Is this a bug?
JSON{
"logoPosition": "right",
"pages": [
{
"name": "page1",
"elements": [
{
"type": "matrixdropdown",
"name": "question1",
"columns": [
{
"name": "Column 1"
},
{
"name": "Column 2",
"cellType": "dropdown"
}
],
"choices": [
1,
2,
3,
4,
5
],
"cellType": "tagbox",
"rows": [
"Row 1",
"Row 2"
]
},
{
"type": "matrixdynamic",
"name": "question2",
"columns": [
{
"name": "Column 1"
},
{
"name": "Column 2",
"cellType": "tagbox"
}
],
"choices": [
1,
2,
3,
4,
5
]
}
]
}
]
}