Expand my Community achievements bar.

SOLVED

Add Component to two componentGroup

Avatar

Level 2

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
1 Accepted Solution

Avatar

Correct answer by
Community Advisor

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

View solution in original post

3 Replies

Avatar

Community Advisor

@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.

Avatar

Correct answer by
Community Advisor

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

Avatar

Community Advisor

Why don't create this component with common group

componentGroup="common-a group" 

 

or another option to proxy MyComponent as MyComponent2



Arun Patidar