Hi,
i’m not shure whats best practice to add inline editable properties to DocumentType.
I tried it like that:
fusion:
projectTitle = Neos.Neos:Editable {
node=${node}
property = 'projectTitle'
}
config:
"MyProject.Site:Document.Project":
superTypes:
"MyProject.Site:Document": true
ui:
icon: "icon-file"
label: "Project"
childNodes:
main:
type: "MyProject.Site:Collection.Content.Main"
properties:
projectTitle:
type: string
ui:
inlineEditable: true
inline:
editorOptions:
placeholder: "Projekt Titel hier einfügen"
autoparagraph: false
The output of “projectTitle” is always empty and not editable.
Hope someone have a hint or an example for me.