I've added a new field to a component dialog used across ~500 pages in our AEM instance.Issue:New field appears correctly on newly created pagesFor existing pages, field only appears after reopening/closing the dialogManually reauthoring 500+ pages isn't feasible. Need efficient solution to add this...
Hi all, I am learning AEM Backend.Kindly share some good tutorials on: Scheduler Event Handler. Hopefully these tutorials will walk me through creating and testing these from scratch, enabling me to repeat myself. Appreciate all your replies. Thanks,RK.
In AEM text component, where there is a option to add link, can we add links which has authentication requirements ?I have tried adding one, for normal external links it is working fine, when I add a link which requires authentication, AEM link checker is showing it as invalid and it is showing up a...
Hi Everyone,I am trying to use AEM Groovy Console to add a new tag to a page's existing cq:tags property.Below is my code:def page = getPage("/content/mysite/en/sample")def modifiable = page.nodedef tagToAdd = "myproject:custom/tag"def existingTags = modifiable["cq:tags"] ?: []if (!existingTags.cont...
Hi Everyone, I am working on custom work and need to send and email for approval. We are using ootb email configs. com.day.cq.mailer.DefaultMailService.cfg.json { "smtp.host": "$[env:PROJECT_SMTP_HOST]", "smtp.port": "30465", "smtp.user": "$[env:EMAIL_USERNAME]", "smtp.password": "$[...
Hi all, For AEM front end coding, I see the predominant use of CRXDE and for back end IntelliJ or Eclipse.Also, we start with an AEM Archetype. 1.In Real AEM Projects also do we start coding with AEM Archetype only?I understand AEM Archetype is a very good starting point for coding, as it complies g...
if allow.empty is enabled BUT I have entries in allow.hosts.regexp, is my instance still limited to the hosts lin the allow.hosts.regexp list or will the instance accept any request coming from anywhere? Thanks!
Hi All, 1)I am trying to expose all components on the page in JSON format. When I use OOTB feature pageUrl.model.json, I see a lot of unnecessary data being shown, such as allowed components and other irrelevant details. I want to expose a clean JSON and have already implemented Sling Models using j...