02-21-2009 01:48 PM
var catNodeRef = search.luceneSearch("…");
var cats = document.properties["cm:classifiable"];
cats.push(catNodeRef);
02-23-2009 03:49 PM
02-25-2009 09:07 PM
document.addAspect("cm:versionable");
document.addAspect("cm:generalclassifiable");
for each (cl in classification.getAllCategoryNodes("cm:generalclassifiable")){
if(cl.name == "Test Plan"){
document.properties["cm:categories"].push(cl);
}
}
document.properties["cm:categories"].push(cl);
02-26-2009 01:01 AM
<aspect name="cm:generalclassifiable">
<title>General Classifiable</title>
<parent>cm:classifiable</parent>
<properties>
<property name="cm:categories">
<title>Categories</title>
<type>d:category</type>
<mandatory>false</mandatory>
<multiple>true</multiple>
<index enabled="true">
<atomic>true</atomic>
<stored>true</stored>
<tokenised>true</tokenised>
</index>
</property>
</properties>
</aspect>
02-26-2009 02:01 AM
02-26-2009 04:34 AM
Tags
Find what you came for
We want to make your experience in Hyland Connect as valuable as possible, so we put together some helpful links.