Hi, when I enabled the Show the Previous Page button
and set the form in display mode, the first page never displayed and it set the 2nd page as the first page to display. What is the property should I used to display the first page in display mode?
Code example from
Survey Creator
JSON{
"title": "First page is Starting Page",
"logoPosition": "right",
"pages": [
{
"name": "page1",
"elements": [
{
"type": "text",
"name": "question1",
"title": "Name"
},
{
"type": "text",
"name": "question2",
"title": "Phone"
}
],
"title": "Starting Page"
},
{
"name": "page2",
"elements": [
{
"type": "text",
"name": "question3",
"title": "First"
},
{
"type": "radiogroup",
"name": "question4",
"title": "Radio",
"choices": [
"Item 1",
"Item 2",
"Item 3"
]
}
],
"title": "Questions"
},
{
"name": "page3",
"elements": [
{
"type": "checkbox",
"name": "question5",
"title": "Soalan",
"choices": [
"Item 1",
"Item 2",
"Item 3"
]
}
],
"title": "Last Page"
}
],
"firstPageIsStarted": true,
"logoHeight": "300px",
"logoWidth": "200px"
}
Survey Answer
JSON{
"question3": "Anything",
"question2": "239002312",
"question5": [
"Item 1"
],
"question4": "Item 1",
"question1": "John"
}
It really important for us to display the first page as the customer will fill in their details before start the survey.
The first page of the survey form before submit
The first page of the survey form after submit