내 커뮤니티 업적 표시줄을 확대합니다.

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

Mark Solution

활동이 없어 이 대화는 잠겼습니다. 새 게시물을 작성해 주세요.

해결됨

Dialog for edit Sites

Avatar

Level 2

Hi,

I have one question related with the Sites.

Is it possible to make dialogs like with pages and componentes properties, in order to have a beatiful way to select some kind of properties out of the box manage by the developer??

For example in order to customize the creation of some sites from a selected blueprint.

 

Thank you

1 채택된 해결책 개

Avatar

정확한 답변 작성자:
Level 10

yes, its possible. 

In order to achieve those customization you need to override AEM default behaviour.

Take a look a JS file http://localhost:4502/crx/de/index.jsp#/libs/cq/ui/widgets/source/widgets/wcm/ a lot of these JS is used for default aem dialog boxes.

You can customized it

원본 게시물의 솔루션 보기

4 답변 개

Avatar

정확한 답변 작성자:
Level 10

yes, its possible. 

In order to achieve those customization you need to override AEM default behaviour.

Take a look a JS file http://localhost:4502/crx/de/index.jsp#/libs/cq/ui/widgets/source/widgets/wcm/ a lot of these JS is used for default aem dialog boxes.

You can customized it

Avatar

Level 2

May be is better to customize the new UI???

http://localhost:4502/crx/de/index.jsp#/libs/wcm/core/content/sites/createlivecopywizard

 

The problem is that if we upgrade AEM, we might lose all the changes we would made...

Avatar

Level 10

Hi,

So when you override a aem js file from /libs, you no longer use it rather you create a copy of it under /apps so even if you upgrade /apps wont gets affected

see this https://docs.adobe.com/docs/en/cq/5-6-1/developing/clientlibs.html

Avatar

Level 2

Ohhh I see. Thank you very much. I will try something with that :)