Expand my Community achievements bar.

Dive into Adobe Summit 2024! Explore curated list of AEM sessions & labs, register, connect with experts, ask questions, engage, and share insights. Don't miss the excitement.
SOLVED

How to add a component to the paragraph system

Avatar

Level 3

Hi Everyone,

I am new to AEM development and I have made one of my first components.What would I have to do to be able to add the component via design and edit mode to a geometrixx page or my own web app's parsys?

Thanks!

1 Accepted Solution

Avatar

Correct answer by
Community Advisor

Hi,

You mean by adding a parsys component.

please check this link:

http://blogs.adobe.com/sunil/2015/04/12/adding-the-parsys-component-to-template/

if you are using sightly them:

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

if JSP then:

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

Additionally:

If you want your component to be able when you click on design mode and then adding the component through parsys.

create a blank dialog or create a node cq:EditConfig so this component will be available in the design mode of page.

~ Prince

View solution in original post

2 Replies

Avatar

Correct answer by
Community Advisor

Hi,

You mean by adding a parsys component.

please check this link:

http://blogs.adobe.com/sunil/2015/04/12/adding-the-parsys-component-to-template/

if you are using sightly them:

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

if JSP then:

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

Additionally:

If you want your component to be able when you click on design mode and then adding the component through parsys.

create a blank dialog or create a node cq:EditConfig so this component will be available in the design mode of page.

~ Prince

Avatar

Level 10

If you are new to AEM - check out this article - 

http://scottsdigitalcommunity.blogspot.ca/2014/08/creating-your-first-adobe-experience_21.html

We have tons of AEM HELPX articles that will get you up and running in AEM.