Customize the Matrix?
See original GitHub issueImage Reference:
Questions below:
- How to number the questions inside the matrix?
- How to change the color of the checked radio button (blue) to green?
- Is there a way to override the “inAllRowRequired” functionality? I want to open my own snackbar. I tried to implement it this way:
surveyValidateQuestion = (s, options) => { if (options.name === ‘Quality’) { const question = s.getQuestionByName(‘Quality’); if (!question.rows.every((row) => (options.value || {})[row.itemValue] !== undefined)) { options.error = ‘Answer all questions’; document.getElementById(‘sq_100_errors’).style.display = ‘none’; this.openSnackBar(‘error’, ‘All rows must be answered’); } } }
but the options.error would still show up
Are you requesting a feature, reporting a bug or asking a question?
What is the current behavior?
What is the expected behavior?
How would you reproduce the current behavior (if this is a bug)?
Provide the test code and the tested page URL (if applicable)
Tested page URL:
Test code
your_code_here
Specify your
- browser:
- browser version:
- surveyjs platform (angular or react or jquery or knockout or vue): Angular
- surveyjs version:
Issue Analytics
- State:
- Created 3 years ago
- Comments:9 (5 by maintainers)
Top Results From Across the Web
Create a matrix visual in Power BI - Microsoft Learn
You can create matrix visuals in Power BI reports and cross-highlight elements within the matrix with other visuals on that report page.
Read more >Customize which columns display in the matrix - Resource Hero
This post explains how to customize which columns display in the matrix. ... Click Manage next to the RHA Matrix Fields custom setting....
Read more >Customize matrix topology - algosec
Customize matrix topology · Locate the desired zone in the table's Zone column. · In the zone's row, in the Type column, select...
Read more >Customizing Matrix Settings
Customizing Matrix Settings. Determine the type of setting to customize and select the appropriate customize topic. Matrix Symbol Settings.
Read more >Creating a “custom” or “hybrid” matrix in PowerBI
Step 1: Creating the custom layout for the columns of the matrix. The key to this solution is to create a “custom” column...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
onAfterRender
event:here the example: https://plnkr.co/edit/zzit5Wtc28Xe9v9m
Please check our “Appearance customization” examples : https://surveyjs.io/Examples/Library?id=custom-theme&platform=jQuery&theme=modern#content-result
I didn’t fully understand you sorry. Could you please describe your scenario in greater details?
@dmitrykurmanov thank you so much man! works perfectly! 😃