I want to build a Tabpanel-Componet. In my ContentCollection of panels I can get the identifier with ${q(node).property('_identifier')}. But in my tab list I get the title of my panel, but not the identifier.
Identifier, hidden, etc. are attributes of a node and not like the properties you declare via the nodetype.
q(node).property('_hidden') still let’s you access them via a “magic trick”, but you cannot access via properties, as this array doesn’t contain them.
And for (slight) performance reasons you shouldn’t use node.properties and use q(node).property(‘myProp’) instead.