if I choose a different path, would jars be installed? I thought it has to be those specific path? If not what what is requirement for create/specify a new path
I have created project (say project A) just pushing AWS libraries to AEM in the apps/system/install folder, so that my other project (say project B) running on the same author instance can use those libraries within OSGI framework. After project A has pushed the libraries, I can see them in apps/sys...
Hi, this is not a dialog, but the property fields when create a new page. I think the problem is this js is called before the page render completed (I can only see content in the header tag), therefore anything you set for selector will be "not defined". Please let me know if I understand this wrong...
Yes, I was following these two posts. ThanksAEM Touch UI Dialog Validation New Best Practice: Use Foundation-Validation – Adobe https://www.codeflair.ch/page/aem/aem-touchui-dropdown-mandatory-validation/
PS. when I click the save button, it never run into this validate function neither. (I thought the function should be called only when save button clicked though)
Hi, I am writing a new clientlib to validate my customised field on page properties, which is defined below. <field jcr:primaryType="nt:unstructured" sling:resourceType="granite/ui/components/foundation/form/select" fieldLabel="Offer Type" cq:showOnCreate="{Boolean}true" name="./offerType...
I have created a slingServlet like below with post request. It worked before and somehow stopped working. @SlingServlet(methods = {HttpConstants.METHOD_POST, HttpConstants.METHOD_OPTIONS}, paths = {"/bin/v1/cms/content/sitemap"})public class SitemapServlet extends SlingAllMethodsServlet {}Not sure...
Thanks Jörg. How would I able to make sure that the injection happens before the initialisation? I have already tried to set attribute immediate to true for the Component, but that doesn't make any difference. Is there something I can configure the order or so ? Thanks
I am trying to call AWS S3 bucket from our AEM. I have created an S3Manager class/service to to wrap it. which will be injected/referenced from wherever needed. This is working fine, but requires to create AmazonS3Client instance each time when I need to upload or download a file. I am trying to ini...