We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
T20733 - Dynamic matrix question is not showing while adding logic conditions to other questions https://surveyjs.answerdesk.io/internal/ticket/details/T20733
A matrix can be used in exressions: for instance, to check whether a matrix is not empty.
{matrix} notempty
Consider a demo survey JSON:
{ "logoPosition": "right", "pages": [ { "name": "page1", "elements": [ { "type": "matrixdynamic", "name": "question1", "columns": [ { "name": "Column 1" }, { "name": "Column 2" }, { "name": "Column 3" } ], "choices": [ 1, 2, 3, 4, 5 ] } ] }, { "name": "page2", "elements": [ { "type": "radiogroup", "name": "question2", "choices": [ { "value": "Item 1", "text": "Yes" }, { "value": "Item 2", "text": "No" } ] }, { "type": "matrixdynamic", "name": "question3", "columns": [ { "name": "Column 1" }, { "name": "Column 2" }, { "name": "Column 3" } ], "choices": [ 1, 2, 3, 4, 5 ] } ] } ], "triggers": [ { "type": "copyvalue", "expression": "{question2} = 'Item 1' and {question1} notempty", "fromName": "question1", "setToName": "question3" } ] }
However, the condition editor doesn't display a matrix in a list of available form elements:
The text was updated successfully, but these errors were encountered:
andrewtelnov
No branches or pull requests
T20733 - Dynamic matrix question is not showing while adding logic conditions to other questions
https://surveyjs.answerdesk.io/internal/ticket/details/T20733
A matrix can be used in exressions: for instance, to check whether a matrix is not empty.
Consider a demo survey JSON:
However, the condition editor doesn't display a matrix in a list of available form elements:
The text was updated successfully, but these errors were encountered: