Versions Compared

Key

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

...

With the horizontal layout, you can enable spacing between fields in the layoutorder components horizontally. Spacing between components is enabled by default. To disable the spacing, set the spacing property to false.

Code Block
languageyml
titleExample horizontal layout definition
collapsetrue
composite:
  $type: compositeField
  label: Name
  layout: horizontal
  fields:
    - name: salutation
      label: Salutation
      $type: select
      options:
        - name: Mr.
          value: Mr.
          label: Mr.
        - name: Mrs.
          value: Mrs.
          label: Mrs.
    - name: firstName
      $type: text
      label: First name
    - name: lastName
      $type: text
      label: Last name

...