surveyjs / survey-library

Free JavaScript form builder library with integration for React, Angular, Vue, jQuery, and Knockout.
https://surveyjs.io/form-library
MIT License
4.01k stars 782 forks source link

Single matrix shows errors immediately on value change #8251

Closed andrewtelnov closed 1 month ago

andrewtelnov commented 1 month ago

Updated Everything is working in the latest version: Knockout and react. I have added one more unit test into the master

If you have the following JSON the matrix shows erros on value changed instead of going on the next page.

{
   "elements": [
    {
     "type": "matrix",
     "name": "question1",
     "columns": [
      "Column 1",
      "Column 2"
     ],
     "rows": [
      "Row 1",
      "Row 2",
      "Row 3",
      "Row 4"
     ],
     "isAllRowRequired": true
    }
 ]
}