Thursday, October 11, 2012

Alfresco Hidden Aspect (sys:hiddenaspect)

Removing hidden aspect for a alfresco node.

Step 1: Create a javascript to get the node reference.

Step 2: Add the following code.

var node  = "YOUR NODE"; //
node.removeAspect("sys:hidden");
node.save();

Step 3: Now, you can see this node in alfresco share application and alfresco explorer applications.

Hooe this helps someone.

No comments:

Post a Comment