Is "listeners" documented anywhere?
In particular, while at the moment I can define a listener like this:
<linkDialogConfig>
<listeners
jcr:primaryType="nt:unstructured"
show="function() { MyNamespace.myChangeListener(); }"/>
I cannot define it like this:
<linkDialogConfig>
<listeners
jcr:primaryType="nt:unstructured"
show="MyNamespace.myChangeListener"/>
Is there a way to just pass the function literal rather than having to wrap it inside a function() { } expression?