Hi,
I facing an issue where selecting the default value for the drop down, if appears correctly in the json object. after that If I change the choice to remove the choice which was selected in the default value, but it remains there.
The JSON object looks likes this
JSON"pages": [
{
"name": "page1",
"elements": [
{
"type": "checkbox",
"name": "question1",
"defaultValue": [
"Item 1"
],
"choices": [
"Item 2",
"Item 3"
]
}
]
}
],
the goal
I would like to set the deyfault value to empty if the choices does not have that default value choice anyore.
how can I do that?