02-18-2008 02:16 AM
02-18-2008 04:28 AM
02-19-2008 07:54 AM
setVersioning(space);
function setVersioning(curNode)
{
if (curNode.isContainer)
{
var children = curNode.children;
for (var i=0; i<children.length; i++)
{
setVersioning(children[i]);
}
}
if(curNode.isDocument)
{
if (!curNode.hasAspect("cm:versionable")){
var test = curNode.addAspect("cm:versionable");
}
}
}
06-04-2008 04:16 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.