Show & hide
Interface
Example
{
"schema": {
"type": "object",
"properties": { "showImage": { "type": "boolean" } }
},
"layout": {
"type": "div",
"items": [
{ "type": "image", "src": "http://example.org/image.png",
"visibleIf": {
"$eval": "return $val.showImage == true",
"dependencies": [ "showImage" ]
}
}
]
}
}Last updated
Was this helpful?