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: Borders are rendered incorrectly when the matrix is nested in a panel #6376

Closed
JaneSjs opened this issue Jan 10, 2025 · 0 comments · Fixed by #6384
Closed
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

@JaneSjs JaneSjs added the bug label Jan 10, 2025
novikov82 added a commit that referenced this issue Jan 10, 2025
novikov82 added a commit that referenced this issue Jan 12, 2025
novikov82 added a commit that referenced this issue Jan 13, 2025
@RomanTsukanov RomanTsukanov changed the title Multi-Select Matrix within a Panel - Matrix Borders are rendered incorrectly Multi-Select Matrix: Borders are rendered incorrectly when the matrix is nested in a panel Jan 15, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment