AnushM
AnushM

Reputation: 31

Adobe CQ5 parsys component is not visible

I am using AEM. I created page and added parsys component to the template - in body.jsp

<cq:include path="par" resourceType="foundation/components/parsys" />

But I can not edit, use it . In rendered html of page it's empty div, and also absents script for sidekick

CQ.WCM.launchSidekick("/content/mywebsite/en/products", {propsDialog: "/libs/foundation/components/page/dialog", locked: false locked: false });

so sidekick is also invisible on that page, I added a few other components from foundation/components - they are visible. How can I make parsys visible?

Upvotes: 2

Views: 4290

Answers (1)

mish
mish

Reputation: 1065

Perhaps you forgot to include the init.jsp

Try putting the following at the top of your JSP File:

<cq:include script="/libs/wcm/core/components/init/init.jsp"/>

Upvotes: 2

Related Questions