Expand my Community achievements bar.

Radically easy to access on brand approved content for distribution and omnichannel performant delivery. AEM Assets Content Hub and Dynamic Media with OpenAPI capabilities is now GA.
SOLVED

How to access property under jcr:content of page from a component inside a parsys of the page

Avatar

Community Advisor

Hi,

I have a parsys component in my page inside this parsys i have dragged and dropped a custom component into the parsys. Now i had customized the page property dialog.Now when i add value to the page dialog this value gets stored under /content/page/jcr:content/customprop .Now i want to access this custom property value inside my custom dragged component jsp inside parsys.

Within Same component i know we can access properties like          <%=properties.get("sling:resourceType", "default title")%>

Whereas how do i access page property inside the component.

Please let me know.

Regards,

Raja

1 Accepted Solution

Avatar

Correct answer by
Community Advisor

You can access any page property from component like below:

String title = pageProperties.get("jcr:title","Custom");

Thanks

Arun



Arun Patidar

View solution in original post

2 Replies

Avatar

Correct answer by
Community Advisor

You can access any page property from component like below:

String title = pageProperties.get("jcr:title","Custom");

Thanks

Arun



Arun Patidar

Avatar

Level 10

Also notice you are using JSP - best practice in AEM is to replace JSP with HTL.