...
Code Block | ||
---|---|---|
| ||
... { "orientation": "vertical", "items": [ {"field": "age", "readonly": true} ] }, ... |
height
Sets the height
of this field, overwriting the default value in case the widget supports this attribute.
Example:
Code Block | ||
---|---|---|
| ||
...
{
"orientation": "vertical",
"items": [
{"field": "firstName", "height": 20}
]
},
... |
width
Sets the width
of this field, overwriting the default value in case the widget supports this attribute.
Example:
Code Block | ||
---|---|---|
| ||
...
{
"orientation": "vertical",
"items": [
{"field": "firstName", "width": 30}
]
},
... |
Grouping with title
and border
...