Add Component to two componentGroup | Community
Skip to main content
Level 2
October 22, 2020
Solved

Add Component to two componentGroup

  • October 22, 2020
  • 3 replies
  • 2814 views

I would like to add myComponent to two or more componentGroup,

 

How can I do that?

 

<?xml version="1.0" encoding="UTF-8"?>
    jcr:primaryType="cq:Component"
    jcr:title="MyComponent"
    sling:resourceSuperType="custom/components/content/mycomponent/v1/mycomponent"
    componentGroup="first group"/>


I tried:
componentGroup="first group, second group" 
componentGroup="[first group, second group]" but it does not work
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 Anudeep_Garnepudi

Hi @maynorsong 

A component can be part of at most one Component Group (Hidden or any Group). If you want to have same component two groups, it is not possible directly but here is my suggestion.

  1. Duplicate the existing component
  2. Delete all the resources under copied component
  3. Make original component as parent(sling:resourceSuperType)
  4. Change the Component Group

I suggest to do this only if it is highly required, because this way it gives an impression like same component is under two groups but they are not actually one component. We are trying to achieve 100% inheritance here. 

 

Note: sling:resourceType for these components will not be same once authored on a page

 

AG

3 replies

Shashi_Mulugu
Community Advisor
Community Advisor
October 23, 2020

@maynorsong you cannot do it in AEM.

 

May I know why do you want to do it so that we may suggest you a better way.

Anudeep_Garnepudi
Community Advisor
Anudeep_GarnepudiCommunity AdvisorAccepted solution
Community Advisor
October 24, 2020

Hi @maynorsong 

A component can be part of at most one Component Group (Hidden or any Group). If you want to have same component two groups, it is not possible directly but here is my suggestion.

  1. Duplicate the existing component
  2. Delete all the resources under copied component
  3. Make original component as parent(sling:resourceSuperType)
  4. Change the Component Group

I suggest to do this only if it is highly required, because this way it gives an impression like same component is under two groups but they are not actually one component. We are trying to achieve 100% inheritance here. 

 

Note: sling:resourceType for these components will not be same once authored on a page

 

AG

AG
arunpatidar
Community Advisor
Community Advisor
October 25, 2020

Why don't create this component with common group

componentGroup="common-a group" 

 

or another option to proxy MyComponent as MyComponent2

Arun Patidar