Die BPC Version 4.1 wird nicht mehr gewartet.

Sollten Sie diese BPC Version nutzen, empfehlen wir Ihnen eine Migration auf eine aktuelle Version. Die Dokumentation zur neusten BPC Version finden Sie hier. Sollten Sie Fragen haben, wenden Sie sich bitte an unseren Support.

Field Set

This component is a special Container and thus also a "collection component" for additional Components.

Configuration

For general configuration options, see General Component Configuration.

Specific Configuration

layout (string)

Content alignment. Possible values are vertical and horizontal.

Example

fieldset.json
{
  "$schema": "https://forms.virtimo.net/4.1.x/schema.json",
  "metaData": {
    "id": 0,
    "version": 0
  },
  "configuration": {
  },
  "components": [
    {
      "type": "fieldset",
      "layout": "horizontal",
      "label": "Horizontal fieldset",
      "components": [
        {
          "type": "html",
          "value": "First element in horizontal fieldset"
        },
        {
          "type": "html",
          "value": "Second element in horizontal fieldset"
        },
        {
          "type": "fieldset",
          "layout": "vertical",
          "label": "Vertical fieldset",
          "components": [
            {
              "type": "html",
              "value": "First element in vertical fieldset"
            },
            {
              "type": "html",
              "value": "Second element in vertical fieldset"
            }
          ]
        }
      ]
    }
  ]
}
Embedded preview

Keywords: