Question T7844
Visible to All Users

Need Help On Grid

created 3 years ago

Hello

I am a Researcher i have conduct so many surveys i want to create Question which i have shared in attachment please check and let me know how can i drive these type of question

Help: how do we code for single brand selection and once selected in tom the display in the second spontaneous question should omit out the single brand from TOP of Mind recall question

Regards
Muhammad Haris

Comments (1)

    Hello,

    You can open our site https://surveyjs.io/create-survey and try to explore questions yourself. I don't see any problems with it: on the first look you need quite simple questions - dropdowns, radiogroups and checkboxes.

    We can try to construct survey JSON for you using SurveyJS. But in this case we'd like to get your permission to publish this survey on our site in the "real examples" section - https://surveyjs.io/Examples/Library
    If you ok with it, could you please share enough information (categories list) in order to create real-looking survey.

    Thanks, Serge
    SurveyJS Team

    Answers approved by surveyjs Support

    created 3 years ago

    Hello,

    You can use the "notcontains" operator to indicate item is not selected as shown in this live sample - https://plnkr.co/edit/HxtEB0R9KO5mNWAf - two last questions shows items not selected in the first question

    Thanks, Serge
    SurveyJS Team

      Other Answers

      created 3 years ago

      Here is my JSON

      {
      "pages": [
      {
      "name": "page1",
      "elements": [
      {
      "type": "checkbox",
      "name": "question1",
      "choices": [
      {
      "value": "1",
      "text": "A"
      },
      {
      "value": "2",
      "text": "b"
      },
      {
      "value": "3",
      "text": "c"
      }
      ]
      },
      {
      "type": "dropdown",
      "name": "question2",
      "choices": [
      "item1",
      "item2",
      "item3"
      ]
      }
      ]
      }
      ]
      }

      My Question is can i place a if condition on question2 only show unselected choices in next question1 on question level ? is it possible? In surveyjs we can define every option in if check.