Recently we started using AEM forms for our web application development. For our requirements mostly out of the box form components itself are good enough. We started using components like textbox, submit button, panel and many more. Is it fine to continue our development using these components itse...
I created cq:dialog with some nodes in Scaffold Page. When rendered the scaffold page in editor.html (Touch UI) mode and Classic Mode (cf#) mode, both the modes render the fields present in cq:dialog and also have the look and feel of Touch UI. Also verified the default scaffold provided by AEM and ...
Hi Team,we are trying to add dependency for cq-social-console on POM and ended up in the following error, Any pointer to fix this issue will help us moreDependency:<dependency><groupId>com.adobe.cq.social</groupId><artifactId>cq-social-console</artifactId><version>1.3.0</version><scope>provided</sco...
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...
When I am trying to create any Content fragment model using the configuration that i created, it gets stored in CRX under: /conf/testconfig/settings/dam/cfm/models/test-modelThis model by-default has the property "allowedPaths" created. And the value of this property is "/content/entities(/.*)?"Can ...
Hi All,I am getting error in sing model class saying resource resolver is already closed Below is my code for reference.@Model(adaptables = Resource.class)public class SchedulerComponent {private static Logger LOG = LoggerFactory.getLogger(SchedulerComponent.class);@Inject private Date timer;@I...
I am working on developing an Adaptive form in AEM. We already have a sites component which we drag into the parsys system on the site pages. However in the AEM forms parsys I am unable to include the site component(General). Its only allowing me to include the adaptive form components. Is there a w...
So I have the following lines which loads my javascript. <sly data-sly-use.clientLib="${'/libs/granite/sightly/templates/clientlib.html'}" data-sly-unwrap /> <sly data-sly-call="${clientLib.js @ categories='myhost.mycustomJS'}" data-sly-unwrap />I have an HTL variable/property (example: ${prop...
I am creating HTML based on the response from ajax call. I need to include one of the components those many times based on the response of ajax call.var ajaxCallResp = [object,object,..];I am using slick js for carousel behavior. For each object in "ajaxCallResp", I need to create the component with...