Hi @JonMaguire,In your previous question the answer was to use ${item.properties.subtitle} because in that case, the item in question was a Page object.In the case of the Navigation component, the item is not a Page object but a NavigationItem object (you can see this by checking out the getItems() ...
Hi @Aryan12345,Could the issue be caused by the way you fetch your artifacts? What version of core components were you using before? Since v2.7.0, the core components artifacts are no longer available on the Adobe Public repo, as you can see here: https://repo.adobe.com/nexus/content/groups/public/c...
Hi @arvind,This is normal for a typical AEM Author instance installation. The reason is that the WCMMODE is EDIT by default on Author instances, which is mentioned in the documentation here: https://helpx.adobe.com/experience-manager/6-3/sites/developing/using/reference-materials/javadoc/com/day/cq/...
Hi @psrpjayaem,As @arunpatidar mentioned, there is no easy way to do this in HTL and it will always be more verbose and less performance (due to lots of iterating) to perform this kind of complex logic than if you used a Sling model.In my opinion, you really should be using a model for this kind of ...
Hi @arvindk091986,Migrating from AEM 6.2 in Classic UI to AEM 6.5 in Touch UI is going to be a BIG project. I'm speaking from experience as a project I'm working on from AEM 6.3 in Touch UI to AEM 6.5 in Touch UI is going to take roughly 300 man days.You would have to share the whole stacktrace with...
Hi @johns56194565,If you're looking for a way to add/change the Type drop-down, have a look at my tutorial on the subject: https://levelup.gitconnected.com/aem-populate-a-drop-down-with-a-data-source-edafada90cc4
Hi @zeevd,As @Shashi_Mulugu suggested, this clientlib is meant for authoring purposes and if authors are accessing AEM via Dispatcher then your Dispatcher should allow all paths (or you will have many other problems too).However, if you wish to expose a clientlib under /libs in a Publisher witha Di...
Hi all,I recently began writing Groovy scripts and decided to make this quick-tip tutorial on how to speed up your Groovy developments using IntelliJ!Have a read: https://levelup.gitconnected.com/aem-quick-tip-write-your-groovy-scripts-in-intellij-716f4aa3c6ba
Hi,I'm still a bit confused by some of the explanations but not, you cannot use the Style system to add attributes To make the author experience as friendly as possible though I would suggest using an Autocomplete Tags widget in the edit dialog to select the attributes: https://helpx.adobe.com/expe...
Hello @Unnikrishnankv, I don't believe there is, but even if there were, I don't think it would be the best way to proceed.If you want to do advanced pre-processing then I think your best bet is to do so during a build process, by creating a front-end project as is commonly done when using the later...