Versions Compared

Key

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

...

Code Block
languageyml
columns: &columns
  - name: jcrName
    label: name
    $type: jcrNameColumn
    editable: true
    nodeTypeToIcon:
      mgnl:contact: icon-people
      mgnl:content: icon-folder
    editor:
      availability:
        nodes: true
        properties: true
  - name: value
    label: value
    editable: true
    editor:
      availability:
        nodes: false
        properties: true
  - name: jcrPath
    label: path
    $type: jcrPathColumn
  - name: status
    label: status
    $type: jcrStatusColumn
  - name: mgnl:created
    $type: dateColumn
    label: date
    editable: false
    editor:
      availability: *onlyContacts
      field:
        $type: textField
        converterClass: com.vaadin.data.converter.StringToDateConverter
  - name: compatibility
    label: compatibility
    class: info.magnolia.ui.workbench.column.definition.CompatibilityColumnDefinition
    deprecatedColumnDefinition:
      class: info.magnolia.ui.workbench.column.definition.NodeTypeColumnDefinition

Column definition properties

...