Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagejson
      ...
      {
        "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
languagejson
      ...
      {
        "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
languagejson
      ...
      {
        "orientation": "vertical",
        "items": [
          {"field": "firstName", "width": 30}
        ]
      },
      ...

Grouping with title and border

...