Hello
I added an input of type "Text" with default value like "01/01/2022", the creator's preview displays correctly my default value but in the survey form, my input is still empty, see attached screenshots and below my JSON:
JSON{
"pages": [
{
"name": "page1",
"elements": [
{
"type": "text",
"name": "question1",
"defaultValue": "01/01/2022"
},
{
"type": "checkbox",
"name": "question2",
"choices": [
"item1",
"item2",
"item3"
]
},
{
"type": "dropdown",
"name": "question3",
"choices": [
"item1",
"item2",
"item3"
],
"choicesByUrl": {
"url": "/api/countries"
}
}
]
}
]
}
Many thanks for your help