I want to only show a property in the inspector when multiple other properties are set, like:
'Example.Example:Content.Whatever':
properties:
prop1:
type: boolean
prop2:
type: boolean
prop3:
type: string
ui:
inspector:
hidden: 'ClientEval:node.properties.prop1 ? false : {ClientEval:node.properties.prop2 ? true : false}'
This example doesn't work, but maybe it explains my intention.
The official neos docs only have an example for 1 condition which works but is not enough.