Hi @shyamasundar-ks , The way I would debug this would be as follows:- Open browser developer console- Search for the servlet called in the sources(JS) - Then put the breakpoint there.- Check if the breakpoint is called twice. ( Which I think it would )? If yes, the problem lies within the JS script...
Hi @neeraj_24412 , To have this checkbox:1. You need to have smart crop enabled for your asset/s. To enable smart crop :1. You need to have dynamic media setup in your instance.https://experienceleague.adobe.com/docs/experience-manager-65/assets/dynamic/administering-dynamic-media.html?lang=en After...
Hi @rangavinod , You can try AEM CIF.Adobe Documentation: https://experienceleague.adobe.com/docs/experience-manager-65/commerce/home.html?lang=en https://experienceleague.adobe.com/docs/experience-manager-65/commerce/faq.html?lang=en You can go over this:https://blog.developer.adobe.com/how-cif-int...
Hey @chiragtakkar5 ,AEM component testing is a process of testing individual AEM components to ensure they are functioning correctly and as expected. This article pretty much covers the whole process of it:https://experienceleague.adobe.com/docs/experience-manager-65/developing/components/hobbes.htm...
Hi @ravir73578276 ,You can use SlingAuthenticator.The Sling Authentication Service provides a method called login(HttpServletRequest request) which can be used to validate the authenticity of the user token. Reference: https://sling.apache.org/documentation/the-sling-engine/authentication/authentica...
Hi @broman__pl ,Yes, it works. Maybe you missed a step or config.
Please try to go through this answer by @Shubham_borole, and check whether you are following the same process or not.Solved: Custom Step Workflow with Ecma script - Adobe Experience League Community - 416420
{Date} is the data type and then in place of {now}, you would need to set time dynamically from the back-end.
Something like this,
Calendar calendar = Calendar.getInstance(TimeZone.getTimeZone("GMT"));
child.setProperty(cpropertyName,calendar);
You can refer this question for detailed explanation...
To add a default value to a field, you can use "defaultValue"
<pageDate
jcr:primaryType="nt:unstructured"
sling:resourceType="granite/ui/components/coral/foundation/form/datepicker"
displayedFormat="MMMM DD, YYYY"
displayTimezoneMessage="{Boolean}true"
fieldDescription="Page Date...
Hi @lakumar ,
You can use the com.day.cq.dam.api.AssetCollection interface instead. The AssetCollection interface provides similar functionality and can be used as a replacement for the SmartCollection class.
You can also use the com.day.cq.dam.api.AssetCollectionManager to manage collections and ...
The version being used in your local server is version 5.0.0, which has a class file version of 55.0, but the version being used in the cloud manager is an older version with a class file version of 52.0.
To resolve this issue, you'll need to ensure that the same version of the mockito-core librar...