Versions Compared

Key

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

...

With the horizontal layout, you can order components horizontally. To disable spacing between components, set the spacing property to false.

(info) HorizontalLayoutDefinition has been introduced since Magnolia 6.2.1.

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

...