...
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}
]
},
... |
color
In case this field is a multi-file upload, with color
, the color of the file chips can be specified.
Example:
Code Block | ||
---|---|---|
| ||
...
{
"orientation": "vertical",
"items": [
{"field": "myFiles", "color": "blue"}
]
},
... |
...
Grouping with title
and border
...
Internationalization (i18n)
TODOThe title and description of a form and also its validation messages can be internationalized (= translated to different languages). See here for more details, how this works: Internationalization (i18n).
Special Form Types
Document Understand Form (with AI support)
TODO
Variable substitution
...