column control component: should I use responsivegrid or newpar? | Adobe Higher Education
Skip to main content
sreedobe
Level 4
November 17, 2020
解決済み

column control component: should I use responsivegrid or newpar?

  • November 17, 2020
  • 4 の返信
  • 1492 ビュー

Can someone suggest me if I would like to have wrapper component such as column control.

Should I use responsivegrid or newpar?

 

component html:

 

<div> <div data-sly-resource="${ @ resourceType='wcm/foundation/components/responsivegrid'}"></div> <div data-sly-resource="${ @ resourceType='wcm/foundation/components/responsivegrid'}"></div> </div>

 

 

Issue with this is , template displaying only one responsivegrid . If I have dummy path name for each sly-resource such as

 

<div data-sly-resource="${'container1' @ resourceType='wcm/foundation/components/responsivegrid'}"></div> <div data-sly-resource="${'container2' @ resourceType='wcm/foundation/components/responsivegrid'}"></div>

 

, I do not see responsivegrids at all .

 

Thanks.

このトピックへの返信は締め切られました。
ベストアンサー jerryru

You have to specify the path. The path will be created once you add the component into a page. The added components into the containers will be under the node path. I suggest you can re-add the component again. Then you will see the two components.

 

 

<div data-sly-resource="${'container1' @ resourceType='wcm/foundation/components/responsivegrid'}"></div> <div data-sly-resource="${'container2' @ resourceType='wcm/foundation/components/responsivegrid'}"></div>

 

4 の返信

Ankur_Khare
Community Advisor
Community Advisor
November 17, 2020

try like this-

 

<sly data-sly-resource="${ @ path='containerparsys1', resourceType='wcm/foundation/components/responsivegrid'}"></sly>

<sly data-sly-resource="${ @ path='containerparsys2', resourceType='wcm/foundation/components/responsivegrid'}"></sly

arunpatidar
Community Advisor
Community Advisor
November 17, 2020
jerryru回答
Level 2
November 20, 2020

You have to specify the path. The path will be created once you add the component into a page. The added components into the containers will be under the node path. I suggest you can re-add the component again. Then you will see the two components.

 

 

<div data-sly-resource="${'container1' @ resourceType='wcm/foundation/components/responsivegrid'}"></div> <div data-sly-resource="${'container2' @ resourceType='wcm/foundation/components/responsivegrid'}"></div>

 

BrianKasingli
Community Advisor and Adobe Champion
Community Advisor and Adobe Champion
November 20, 2020

@sreedobe,

Can you please validate if you are using the AEM WCM Core component's Page component, along with the responsive grid?