-
I could not find any parameter for this: |
Beta Was this translation helpful? Give feedback.
Answered by
jodeleeuw
Mar 31, 2020
Replies: 1 comment
-
Hi @arnohakk , I believe you can set var scale_1 = [
"Strongly Disagree",
"Disagree",
"Neutral",
"Agree",
"Strongly Agree"
];
var likert_page = {
type: 'survey-likert',
questions: [
{prompt: "I like vegetables.", name: 'Vegetables', labels: scale_1, required: true},
{prompt: "I like fruit.", name: 'Fruit', labels: scale_1, required: true},
{prompt: "I like meat.", name: 'Meat', labels: scale_1, required: true},
{prompt: "I like dairy.", name: 'Dairy', labels: scale_1, required: true}
],
randomize_question_order: true
}; |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
jodeleeuw
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi @arnohakk ,
I believe you can set
required: true
for any item in thequestions
array. Such as: