Hi
Is it possible to set a field in a repeater field to “required: true”? I tried this:
{
"field": {
"type": "set",
"name": "level",
"label": "Level",
"options": {
"fields": [
{
"type": "text",
"name": "title",
"label": "Titel",
"required": true
},
{
"type": "repeater",
"name": "options",
"label": "Optionen",
"required": true,
"options": {
"field": {
"type": "set",
"name": "option",
"label": "Optionen",
"options": {
"fields": [
{
"type": "text",
"name": "title",
"label": "Titel",
"required": true
},
{
"type": "file",
"name": "sound",
"label": "Sound"
}
]
}
}
}
}
]
}
}
}
but it ignores the required in the form.
Thank you for any help!
Patrick