Where can i find which author has locked the page in Touch UI - AEM6.2 | Community
Skip to main content
Var
Level 4
February 16, 2018
Solved

Where can i find which author has locked the page in Touch UI - AEM6.2

  • February 16, 2018
  • 7 replies
  • 4203 views

Where can i find which author has locked the page in Touch UI in AEM 6.2 version.

I can see in classic UI siteadmin on mouse hover on locked page it shows the locked by user name but in Touch UI where can i see the same feature.? Currently touch ui shows only the page locked, but not the user who locked the page.?

Classic UI :

Touch UI:

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.
Best answer by smacdonald2008

Use Classic UI to get that information - not everything in Classic UI has been moved in 6.2.

Using Classic UI in AEM 6.2 when there is no equivalent feature in Touch UI is fine.

7 replies

Rima_Mittal
Level 4
February 16, 2018

Viewing the lock owner in touch ui would require overlay and customization.

If you overlay the file at /libs/cq/gui/components/coral/admin/page/card/card.jsp to /apps folder, and make changes to the jsp then custom code can be written to display lock owner in the card view.

In card.jsp, following change can be made:

<coral-card-property icon="lockOn" title="<%= xssAPI.encodeForHTMLAttr(i18n.get("Locked")) %>"><%= xssAPI.encodeForHTML(cqPage.getLockOwner()) %></coral-card-property>

The resulting card view will show the lock owner name next to the lock icon.

similarly, customization can be done for list and column view.

Var
VarAuthor
Level 4
February 16, 2018

That means OOTB we can't find which user has locked the page.?

Rima_Mittal
Level 4
February 16, 2018

In touch ui view, I dont think so. Use classic ui or go the node in crx to see who is the lock owner.

If you want to alter the view in touch ui, customization is required.

Var
VarAuthor
Level 4
February 20, 2018

I would like to here any update from Adobe Staff on this feature availability .?

~VAr

smacdonald2008
smacdonald2008Accepted solution
Level 10
February 20, 2018

Use Classic UI to get that information - not everything in Classic UI has been moved in 6.2.

Using Classic UI in AEM 6.2 when there is no equivalent feature in Touch UI is fine.

Var
VarAuthor
Level 4
February 20, 2018

Thank you Scott.

Var
VarAuthor
Level 4
February 27, 2018

thank you  rimam47664074  for the customization solution.