Hi,We need to display currencies that are locale sensitive in Sightly. Using JSP and JSTL this is fairly easy :<%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt" %> <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %> <c:set var="balance" value="120000.2309" /> <fmt:formatNum...
Hi,I have created one component. I just want to know in which page and how many places(pages) this component is being used.Is there any way to find in CQ?Thanks
Hi,I have created a component using sightly. I've created component java class which extends WCMUse under the component. In this class, I'm using some other util class which is already deployed in AEM instance using maven commands. But whenever I'm rendering my component I'm getting the below error ...
Hi all,After installing the following hot fixes:- 3728- 3707- 3892- 3306Sometimes the "Apache Sling Eventing Thread Pool" is displayed as "event.pool.name" and for a while we had thought that "Apache Sling Eventing Thread Pool" has been completely removed and replaced with "Apache Sling Thread Pool ...
Hi,In http://helpx.adobe.com/marketing-cloud/experience-manager.html for Developing AEM OSGi bundles that use Jackrabbit UserManager APIs doc, given http://helpx.adobe.com/experience-manager/kb/creating-cq-widget-supports-image.html URL. Where can I find the actual tutorial? Thanks,AryA
Hi,I'm trying to write a custom Sling Filter for injecting additional HTML markup into the response.Original response:<html> <head> ... </head> <body> ... </body> </html>Response after custom filter:<html> <head> ... <custom-tag> ... </custom-tag> </head> <body> ... </body> </html>This is the filter...