Leiste mit Community-Erfolgen erweitern.

Submissions are now open for the 2026 Adobe Experience Maker Awards.

Mark Solution

Diese Konversation wurde aufgrund von Inaktivität geschlossen. Bitte erstellen Sie einen neuen Post.

GELÖST

How to create child pages using custom cq:dialog!

Avatar

Level 7

I have got this landing page containing a list component which fetches image, title and description from it's child pages and display it as grid. It might be clear that the child page contains an image component along with title and text. I need my cq:dialog in the landing page to be able to create a new child page passing title, text and image path.

1 Akzeptierte Lösung

Avatar

Korrekte Antwort von
Community Advisor

Hi,

You what to create a child page if doesn't exist from list component dialog?

Anyways from dialog you can only create a page using ajax call on dialog-success event.

Create a dialog to provide child page title, template and page name, when submitting the dialog make an ajax call to a servlet which uses Pagemanger API to create the child page, later you can hold the dialog submit by returning false or proceed with dialog submit by returning true as the response from servlet.

PageManager ("The Adobe AEM Quickstart and Web Application.")

Arun Patidar

AEM LinksLinkedIn

Lösung in ursprünglichem Beitrag anzeigen

3 Antworten

Avatar

Korrekte Antwort von
Community Advisor

Hi,

You what to create a child page if doesn't exist from list component dialog?

Anyways from dialog you can only create a page using ajax call on dialog-success event.

Create a dialog to provide child page title, template and page name, when submitting the dialog make an ajax call to a servlet which uses Pagemanger API to create the child page, later you can hold the dialog submit by returning false or proceed with dialog submit by returning true as the response from servlet.

PageManager ("The Adobe AEM Quickstart and Web Application.")

Arun Patidar

AEM LinksLinkedIn

Avatar

Level 7

Exactly. I need to create a child page from list component dialog. Not just that I need to pass a title to the title component, image path to image component and a description to text component via the same dialog upon page creation.

Avatar

Community Advisor

Yes, you can pass title, image and description.

When the page is created use JCR Node API to add image, text components.

Arun Patidar

AEM LinksLinkedIn