Equivalent XPath Query/jcr:root/content/aem-demo//element(*, cq:Page)
[
(jcr:like(fn:name(), '%check%'))
]You can refer to this link for more details.https://experienceleague.adobe.com/docs/experience-manager-65/assets/JCR_query_cheatsheet-v1.1.pdf?lang=en
You can utilize the nodename predicate to search for pages by their name.type = cq:Page
path = /content/aem-demo
nodename = *check*
p.limit = -1https://experienceleague.adobe.com/docs/experience-manager-65/content/implementing/developing/platform/query-builder/querybuilder-predicate-reference.html?l...
You can use AssetReferenceSearch get the resources referenced by the page. It's constructor takes the node (content node of the page ) to search under, path where the assets are stored (can be /content/dam ) and Resource Resolver.String Pagepath = "/content/we-retail/en"; //This would be your page p...
To expose dialog properties to the React component, need to implement a Sling Model. Refer to the Adobe documentation for guidance on creating a custom SPA componenthttps://experienceleague.adobe.com/docs/experience-manager-learn/getting-started-with-aem-headless/spa-editor/react/custom-component.ht...
Please check the existing community discussion that addresses the same topic you requested.https://experienceleaguecommunities.adobe.com/t5/adobe-experience-manager/how-to-populate-by-default-item-in-multifield-dialog/td-p/616089
Hi @aanchal-sikka, Yes, AEM 6.5 has Security and Performance as Staging steps. https://experienceleague.adobe.com/docs/experience-manager-cloud-manager/content/using/code-deployment.html?lang=en#stage-testing
Hi @Ameen_Dev,You can verify if the image is there using the data-sly-test.<sly data-sly-test="${properties.laptopReference}"
data-sly-use.myImg="${properties.laptopReference}/jcr:content/metadata">
<img src="${properties.laptopReference}" class="cover lazyloaded"
alt="${myImg.valueMap['d...