Hello team,
I am trying to display image picker type question into my survey. So i followed this approach https://surveyjs.io/Examples/Library?id=custom-widget-image-picker.
But the image picker type question is not displaying.
Here is the json:
json:
{
startSurveyText: "Start Survey",
firstPageIsStarted: true,
pages:
[
{
"elements":
[
{
"type": "html",
Code"html": "<p>This is C programming section.</p>"
}
]
},
{
"elements": [
{
"name": "hello",
"title": "hello image picker",
"isRequired": true,
"type": "imagepicker",
"choices": [
{
"imageLink": "imagelinkcomeshere",
"value": "image1"
},
{
"imageLink": "imagelinkcomeshere",
"value": "image2"
},
{
"imageLink": "imagelinkcomeshere",
"value": "image3"
}
]
}
]
}
]
}
When i click on start survey button, this message is rendered instead of showing the image piker question "There is no visible page or question in the survey."
Can you please help me…
Thanks,
Sagar.
--