bricks/examples/modal.json

22 lines
295 B
JSON
Raw Normal View History

2023-09-14 10:28:07 +08:00
{
"id":"mymodal",
"widgettype":"Modal",
"options":{
2024-03-18 18:01:56 +08:00
"title":"Test Modal",
2023-09-14 10:28:07 +08:00
"auto_close":true,
"auto_open":true,
"width":"700px",
2024-04-22 19:28:49 +08:00
"timeout":2,
2023-09-14 10:28:07 +08:00
"height":"400px",
2024-03-18 18:01:56 +08:00
"archor":"cc"
2023-09-14 10:28:07 +08:00
},
"subwidgets":[
{
"widgettype":"Text",
"options":{
"text":"This is a test"
}
}
]
}