Skip to main content
sandeepv3925327
New Participant
March 27, 2019

Page properties inheritance

  • March 27, 2019
  • 3 replies
  • 5227 views

Suppose i have one product page in which i created one page properties ex: Country Code, i set that value to "US".

So how can we achieve inheritance so child pages under product page having same value of Country Code i.e "US"

As i am not able to achieve inheritance of page properties to its child pages.

Thanks in Advance for Support

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

3 replies

Gaurav-Behl
New Participant
March 27, 2019

Won't  "inheritedPageProperties" or "HierarchyNodeInheritanceValueMap" work for this?

com.day.cq.commons.inherit.InheritanceValueMap;

com.day.cq.commons.inherit.HierarchyNodeInheritanceValueMap;

HTL Global Objects

arunpatidar
New Participant
March 27, 2019

Hi,

You can do it using sling model or WCMUsePojo.

1. check current page properties, if present use it otherwise look for parent page.

2. in parent page look for same property if present use it otherwise look for its parent page.

3. repeat step 2 until you found either the property or root page of site/sub-site.

Hope this help.

Arun Patidar
manikanthar1295
New Participant
May 2, 2022

Hi Arun,

 

Can u share code how to get the inherited property for page.

smacdonald2008
New Participant
March 27, 2019

You can look at writing a JCR event handler. When child page is created, the event handler can fire and add a prop to meet your requirement.