Show/Hide rows in matrix dropdown question


                        
        
            Survey.StylesManager.applyTheme("defaultV2");
        

//add barrating type into matrix columns (run-time)
Survey.matrixDropdownColumnTypes.barrating = {
    onCellQuestionUpdate: function(cellQuestion, column, question, data) {
        Survey.matrixDropdownColumnTypes.dropdown.onCellQuestionUpdate(cellQuestion, column, question, data);
    }
};

                
                    var json = {
  "elements": [
    {
      "type": "checkbox",
      "name": "car",
      "title": "Which cars have you been driven?",
      "isRequired": true,
      "colCount": 4,
      "choicesOrder": "asc",
      "choices": [
        "Audi",
        "BMW",
        "Citroen",
        "Ford",
        "Mercedes-Benz",
        "Nissan",
        "Peugeot",
        "Tesla",
        "Toyota",
        "Vauxhall",
        "Volkswagen"
      ]
    },
    {
      "type": "matrixdropdown",
      "name": "carrating",
      "isRequired": true,
      "visibleIf": "{car.length} > 0",
      "title": "Please rate these car(s)?",
      "rowsVisibleIf": "{car} contains {item}",
      "cellType": "barrating",
      "choices": [ 1, 2, 3, 4, 5 ],
      "columns": [
        {
          "name": "Style",
          "isRequired": true
        },
        {
          "name": "Performance",
          "isRequired": true
        },
        {
          "name": "Comfort",
          "isRequired": true
        },
        {
          "name": "Quality",
          "isRequired": true
        },
        {
          "name": "Safety",
          "isRequired": true
        },
        {
          "name": "Features",
          "isRequired": true
        }
      ],
      "rows": [
        "Audi",
        "BMW",
        "Citroen",
        "Ford",
        "Mercedes-Benz",
        "Nissan",
        "Peugeot",
        "Tesla",
        "Toyota",
        "Vauxhall",
        "Volkswagen"
      ]
    }
  ]
};
;

                    window.survey = new Survey.Model(json);
                
        
            survey.onComplete.add(function(sender) {
            document.querySelector('#surveyResult').textContent =
            "Result JSON:\n" + JSON.stringify(sender.data, null, 3);
            });
        
        
            ReactDOM.render(
            <SurveyReact.Survey model={survey}  />, document.getElementById("surveyElement"));
        

                    
<!DOCTYPE html>
<html lang="en">
<head>
    <title>Show/Hide rows in matrix dropdown question, Reactjs Survey Library Example</title>
    
<meta name="viewport" content="width=device-width" />
    <script src="https://unpkg.com/jquery"></script>
    <script src="https://unpkg.com/react@17.0.1/umd/react.production.min.js"></script>
    <script src="https://unpkg.com/react-dom@17.0.1/umd/react-dom.production.min.js"></script>
    <script src="https://unpkg.com/@babel/standalone@7.2.5/babel.min.js"></script>
    <script src="/DevBuilds/survey-core/survey.core.min.js"></script>
    <script src="/DevBuilds/survey-core/survey.i18n.min.js"></script>
    <script src="/DevBuilds/survey-react-ui/survey-react-ui.min.js"></script>
    <link href="/DevBuilds/survey-core/defaultV2.min.css" type="text/css" rel="stylesheet" />
    <link rel="stylesheet" href="./index.css">
<script src="https://unpkg.com/jquery-bar-rating"></script>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/latest/css/font-awesome.min.css">
<!-- Themes -->
<link rel="stylesheet" href="https://unpkg.com/jquery-bar-rating@1.2.2/dist/themes/bars-1to10.css">
<link rel="stylesheet" href="https://unpkg.com/jquery-bar-rating@1.2.2/dist/themes/bars-movie.css">
<link rel="stylesheet" href="https://unpkg.com/jquery-bar-rating@1.2.2/dist/themes/bars-pill.css">
<link rel="stylesheet" href="https://unpkg.com/jquery-bar-rating@1.2.2/dist/themes/bars-reversed.css">
<link rel="stylesheet" href="https://unpkg.com/jquery-bar-rating@1.2.2/dist/themes/bars-horizontal.css">
<link rel="stylesheet" href="https://unpkg.com/jquery-bar-rating@1.2.2/dist/themes/fontawesome-stars.css">
<link rel="stylesheet" href="https://unpkg.com/jquery-bar-rating@1.2.2/dist/themes/css-stars.css">
<link rel="stylesheet" href="https://unpkg.com/jquery-bar-rating@1.2.2/dist/themes/fontawesome-stars-o.css">
    <script src="/DevBuilds/surveyjs-widgets/surveyjs-widgets.min.js"></script>

</head>
<body style="margin: 0">
    
            <div id="surveyElement" style="display:inline-block;width:100%;">
                            </div>
    <div id="surveyResult"></div>

<script type="text/babel" src="./index.js"></script>

</body>
</html>
Loading...
Sorry, we can't retrieve the data from server. Please comeback later.

You may use expression properties:

  • choicesVisibleIf in radio group, checkbox and dropdown questions.
  • columnsVisibleIf and rowsVisibleIf in matrix question
  • and rowsVisibleIf in matrix dropdown question
to hide/show choices items, columns and rows in these questions. The expression runs against each choices item. To get the current item value, please use {item} variable in your expression.

The following expression below means: the item is shown if, the same value is checked in the {car} question and it is not selected in the {bestcar} question.

{car} contains {item} and {item}!= {bestcar}

Every ItemValue object has its own visibleIf property. You may override the top level choicesVisibleIf property and define visibleIf expression for an individual choice item.

Third-party libraries: jQuery Bar Rating ( MIT-licensed )

Why we use cookies.

This site uses cookies to make your browsing experience more convenient and personal. Cookies store useful information on your computer to help us improve the efficiency and relevance of our site for you. In some cases, they are essential to making the site work properly. By accessing this site, you consent to the use of cookies.

For more information, refer to DevSoft Baltic’ privacy policy and cookie policy.

Your renewal subscription expires soon.

Since the license is perpetual, you will still have permanent access to the product versions released within the first 12 month of the original purchase date.

If you wish to continue receiving technical support from our Help Desk specialists and maintain access to the latest product updates, make sure to renew your subscription by clicking the "Renew" button below.

Your renewal subscription has expired.

Since the license is perpetual, you will still have permanent access to the product versions released within the first 12 month of the original purchase date.

If you wish to continue receiving technical support from our Help Desk specialists and maintain access to the latest product updates, make sure to renew your subscription by clicking the "Renew" button below.