registry.register("foundation.validation.validator", { selector: "[data-validation=text-validation]", validate: function(element) { let el = $(element); let pattern=/[0-9a-z]/; let value=el.val(); if(pattern.test(value)){ return "Please add only Upper Case Letters in First name"; } } }); this is wor...
Hi Team, I have a page with no body but will just need to have the script included in the head section of the document. Is there a suggested/recommended way to achieve this other than building a component that includes this <script> tag? Thanks in advance for the help!! -Manasa
Hi team, I am in the process of building a website using AEM Sites, utilizing SPA Components and SSR. For this, I am using the standard AEM Archetype (https://github.com/adobe/aem-project-archetype), with the appropriate flags (enableSSR etc). Part of this, is a POM file which reads pipeline varia...
Hii have one config which is factory.Now whenever i went to configMgr and click on add , multiple are adding but the name of the config is file path and extension is coming from pid But i want the extension name should come from either code or in each config we will give one property with "name", wh...
Hi Team,We are attempting to publish the tags to the preview instance. Do we possess the capability to publish the tags to the preview instance in AEM as a cloud service directly from the dashboard itself? While we can perform the publishing through content distribution, we are interested in having ...
Hi Team, i am trying to recreate the four column images in desktop view and images wrapped into 2 rows like 2 images in first column and 2 images in second row.. can we achieve this with the responsive grid layout in aem or with style systems?
Hi, I want to add titles to folders that are already present in dam.There are many folders and sub folders and I want to add jcr:title to only folders and not to the files.Here I want to update all folders under /content/dam/Testing (A,A1,A2,B,C,D) and /content/dam/Testing2(AB,BC)..so on @arunpatida...
this is my custom componant code for adabtive form .content.xml <?xml version="1.0" encoding="UTF-8"?><jcr:root xmlns:jcr="http://www.jcp.org/jcr/1.0" xmlns:nt="http://www.jcp.org/jcr/nt/1.0" xmlns:sling="http://sling.apache.org/jcr/sling/1.0" jcr:primaryType="cq:Component...
Hi, XML file(filename_in.xml) is there in dispatcher location "/mnt/var/www/html" and we are able to access that XML file via "http:www.domain.com/in/en/filename.xml".We are achieving this because we have written a rule in dispatcher as belowRewriteRule ^/in/en/filename.xml /filename_in.xml [PT,L]...