Hi,You can use JQuery to handle this event.Please refer to the following link for understanding how to work with event handlers in AEM for touch-ui dialogs:https://helpx.adobe.com/experience-manager/using/creating-touchui-events.htmlFor your particular scenario, you can use the following jquery that...
Hi,Quickstart is a jar file and it doesn’t start on double-click if some other program has hijacked the jar file extension i.e. when we install JRE on Windows system, the file “jar” should be associated with javaw.exe and if any other program like a zip utility is installed, that utility modifies th...
Hi,Adaptive forms provides several out-of-the-box submit actions for submitting form data to different endpoints or workflows. Store content action is one of the submit actions that can be used for storing form data in the JCR repository. When Store content action is configured on an Adaptive Form, ...
Hi,We had tried to replicate your issue with the following code snippet that you had shared with valid targetURL and invalid targetURL -<div class="col-lg-6"><a href="${properties.targetURL@context='uri'}" class="black_transparent_button">View all fishes|${properties.targetURL}</a></div>When we used...
Hi,The solution for this error is to use @Optional annotation while trying to inject fields using Sling Models. The reason is as follows;When you are using Sling Models for injecting fields and you try to drag and drop the component for the first time, the model will check for the all the injected v...
Hi,Once you configure the columns, to enable the data on reports, you will have to enable "Day CQ DAM Event Recorder" OSGI setting in configuration manager.1) Go to http://localhost:4502/system/console/configMgr2) Search for "Day CQ DAM Event Recorder"3) Check all the event types you want to capture...
Hi,Please refer to the following link for best practices to follow while writing code in Sightly :https://helpx.adobe.com/experience-manager/htl/using/getting-started.htmlWe tried the same html with the following javascript and a valid link and it seems to be working fine.use(function() { var hyp...
Hi,Your use case can be achieved by using Sightly Template and Call feature. Please refer the below example. It'll help you in achieving your use case.templates/tooltip.html:<template data-sly-template.tooltip="${@ text}" class="tooltip_modal"> <div class="modal-content"> <div class="modal-heade...
Hi,Your use case can be achieved by using Sightly Template and Call feature. Please refer the below example. It'll help you in achieving your use case.templates/tooltip.html:<template data-sly-template.tooltip="${@ text}" class="tooltip_modal"> <div class="modal-content"> <div class="modal-heade...
Hi,You can make JQuery AJAX request to call the Sling Servlet, as shown in the following example. //JQuery AJAX request to call Sling Servlet$.ajax({ type : "GET", url : '/bin/custom/path', /*data : { pass your request parameter here },*/ succ...