Hey,
I want to use a custom class for the Neos.Form.Builder:Form
if a Property is true.
Is there is somethin like:
@class = Neos.Fusion:Case {
useCustomClass {
condition = ${q(node).property('useCustom')}
renderer = 'Vendor\\Package\\Fusion\\QuizFormImplementation'
}
else {
condition = true
renderer = 'Neos\\Form\\Builder\\Fusion\\FormImplementation'
}
}
Would be nice if I can check that.