I defined a new type in Alfresco with a mandatory aspect zhx:rm
that defines a property zhx:taskNo
.
I created a document of this type, and set its zhx:taskNo
value.
Using OpenCMIS Workbench 0.10.0, I opened the properties of this document.
PROBLEM: zhx:taskNo
is not shown.
Am I doing something wrong?
Is it Alfresco's intended behavior?
While CMIS Extensions might be a solution, I don't want to use them, as it would make the code less manageable.
<types>
<type name="zhx:rm">
<title>RM</title>
<parent>cm:content</parent>
<mandatory-aspects>
<aspect>zhx:rmAspect</aspect>
</mandatory-aspects>
</type>
</types>
<aspects>
<aspect name="zhx:rmAspect">
<title>RM Aspect</title>
<properties>
<property name="zhx:taskNo">
<type>d:text</type>
<index enabled="true">
<atomic>true</atomic>
<stored>true</stored>
<tokenized>both</tokenized>
</index>
</property>
</properties>
</aspect>
</aspects>