Skip to content
New issue

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

Multi-Select Matrix within a Panel - Matrix Borders are rendered incorrectly #6376

Closed
JaneSjs opened this issue Jan 10, 2025 · 0 comments · Fixed by #6384
Closed

Multi-Select Matrix within a Panel - Matrix Borders are rendered incorrectly #6376

JaneSjs opened this issue Jan 10, 2025 · 0 comments · Fixed by #6384
Assignees
Labels

Comments

@JaneSjs
Copy link
Contributor

JaneSjs commented Jan 10, 2025

To reproduce the issue, navigate to https://surveyjs.io/create-free-survey. Add a panel and drop a Multi-Select Matrix within the panel. Set a Static survey width mode.

{
  "pages": [
    {
      "name": "page1",
      "elements": [
        {
          "type": "panel",
          "name": "panel1",
          "elements": [
            {
              "type": "matrixdropdown",
              "name": "question1",
              "columns": [
                {
                  "name": "Column 1"
                },
                {
                  "name": "Column 2"
                },
                {
                  "name": "Column 3"
                }
              ],
              "choices": [
                1,
                2,
                3,
                4,
                5
              ],
              "rows": [
                "Row 1",
                "Row 2"
              ]
            }
          ]
        }
      ]
    }
  ],
  "widthMode": "static"
}

Select a matrix and you'll see the borders are rendered incorrectly:
image

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment