That makes slightly more sense. You're best bet here is to do something like:<ul><li data-link="/content/foo.html">Click Here</li></ul>and then configure the transformer to rewrite data-link (or whatever name) attributes of the li element, just like the href attribute of the a element.But really, yo...
JavaScript content is not rewritten by any of the default rewriter pipeline components.I'm honestly unclear on what you're trying to accomplish. It seems like you're just using JavaScript to do the same thing that clicking the link would do. Perhaps if you explain what you're trying to accomplish, s...
At the risk of stating the obvious, your query is only searching for the keyword within the dc:title property. So it wouldn't find results with have the keyword in the description. See https://dev.day.com/docs/en/cq/current/javadoc/com/day/cq/search/eval/FulltextPredicateEvaluator.html for a descrip...
Hi,As I said, you can achive what you are describing by using glob expressions. That said, it sounds like you have a content structure problem which should be addressed at some point in the near future.Justin
This is kinda intrinsic to the way that JCR security works, so you wouldn't want to disable this entirely. For special cases, you can set a glob expression on the access control entry to refine the scope of a particular ACE. Take a look at the ACLs on /home or /home/users/geometrixx for some example...
Hi,In general, taglibs in ACS AEM Commons will have namespace URIs starting with "http://www.adobe.com/consulting/acs-aem-commons".I would generally agree with the potential problems -- either the bundle containing these taglibs isn't deployed or can't be resolved. That bundle just isn't from ACS AE...
Hi Ankit,I'd suggest checking that displayStart and displayEnd are actually Date properties. It sounds like they aren't.The timeZone property needs to be parseable by TimeZone.getTimeZone(). See http://docs.oracle.com/javase/7/docs/api/java/util/TimeZone.html#getTimeZone(java.lang.String)Regards,Jus...
Hi,You can do this with a rewriter transformer. See https://github.com/Adobe-Consulting-Services/acs-aem-commons/blob/master/bundle/src/main/java/com/adobe/acs/commons/rewriter/impl/StaticReferenceRewriteTransformerFactory.java for an example of something similar.Regards,Justin
Hi Subhra,I suspect this actually isn't the RTE as much as it is XSS protection. You will need to reconfigure the XSS protection to allow this. By default, only a small number of javascript functions are allowed in the href attribute:<literal-list> <literal value="javascript:history.go(0)"/> <litera...