Versions Compared

Key

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

...

Until the release of Magnolia 5.7, the only way to specify the type of a field was to state its fully qualified class name. For example, to create a simple text field named title in a dialog's tab called tabText you had to include create the following code in the configuration of the dialog:

Code Block
languageyaml
form:
  tabs:
    - name: tabText
      fields:
        - name: title
          class: info.magnolia.ui.form.field.definition.TextFieldDefinition

...