Hi @supriya-hande, You need to generate an Adaptive Form and then incorporate it into AEM Sites. To embed the Adaptive Form, utilize AEM Core Forms Components, specifically the "Adaptive Form - Embed (v2)" component.Reference:https://experienceleague.adobe.com/docs/experience-manager-cloud-service/c...
Hi @skumari, I added the Query Builder implementation for Metadata/Tags in the GitHub Repository. Please check here: https://github.com/MahediSabuj/aem-react-spa/blob/3488028db20beff9cff391e0673aafca77eec731/core/src/main/java/com/aem/react/spa/core/servlets/QueryBuilderServlet.java String assetPath...
Hi @JagadeeshSu, Adobe Experience Manager (AEM) does NOT support GraphQL mutations out of the box for non-persistent queries. AEM's GraphQL implementation primarily focused on read-only, non-persistent queries to retrieve data from the repository.If you check GraphQL Query Editor (GraphiQL Explorer)...
Hi @Jörg_Hoh, Basically, I wanted to understand is there any better approach to generate clientlibs. Based on the feedback received, it appears that the current approach to generate clientlibs is considered satisfactory. Thanks.
Hi @aanchal-sikka, In case of site-specific libraries containing numerous unused component-specific dependencies, we aim to implement an approach that selectively adds only the necessary component-specific libraries to each page. By doing so, we can enhance the page's loading speed and overall effic...
We can use HTML element in content fragment model, didn’t know before. Surely, I will try this tomorrow.But in JCR, we can create either node or folder, so what would be the jcr:primaryType for DIV element? Can you please confirm?I tried with granite/ui/components/coral/foundation/container like com...
To add any custom class and attribute to the dialog element we use granite:class and granite:data respectively. It works fine for Coral Textfield, Select, etc. I tried to implement the same for Tab Placeholder, but class and attribute not available on HTML for Tab. <_x0031_689938985967 jcr:primaryTy...
You need to create a clientlibs as category name dam.cfm.authoring.contenteditor.v2 for adding javascript when you add/edit content fragment from DAM.Here are sample javascript for hide the tab:(function(document, $) {
$(document).on("foundation-contentloaded", function(e) {
Coral.commons.read...
Currently, We are loading Client-libraries in Components using HTL like below:<sly data-sly-use.clientlibs="${'com.adobe.cq.wcm.core.components.models.ClientLibraries' @ categories=['apps.aem-demo.components.content.external-link-popup'], defer=true}">
${clientlibs.jsAndCssIncludes @ context="unsa...