cancel
Showing results for 
Search instead for 
Did you mean: 

How to show that who checkout contents in document-details.j

billzyf
Champ in-the-making
Champ in-the-making
Hi
  How to show that who checkout contents in document-details.jsp?


thanks
2 REPLIES 2

frederick
Champ in-the-making
Champ in-the-making
When a content item is checked out, it gets a property called 'lockOwner' (through the aspect 'lockable'). This property contains a username.
You should be able to show this property in the details screen like this:


   <config evaluator="aspect-name" condition="cm:lockable">
      <property-sheet>
         <show-property name="cm:lockOwner" display-label="Checked out by"/>
      </property-sheet>
   </config>

(put this code in web-client-config-custom.xml in your extension folder)

Regards,

billzyf
Champ in-the-making
Champ in-the-making
thank you very much!