aem-6

AEM query builder: search multiple properties

こ雲淡風輕ζ 提交于 2020-07-10 08:53:26
问题 How can I list all the properties and respective values for more than one property under a give node. For example, the below code, I could search for one property only. But I need to search for 10 different property(alttext, img, promos.. etc) and get respective values(if exist) for it. Map<String, String> map = new HashMap<String, String>(); map.put(TYPE_PREDICATE, "nt:base"); map.put(PATH_PREDICATE, printAttachmentJsonNodePath); map.put("property", "fileReference"); map.put("p.excerpt",

AEM 6.2 support for SSR & SPA

自闭症网瘾萝莉.ら 提交于 2020-06-29 05:16:16
问题 And I want to build an application that needs to render in the server-side in AEM. Then I have followed the tutorial which gives from AEM [https://helpx.adobe.com/experience-manager/kt/sites/using/getting-started-spa-wknd-tutorial-develop/react/chapter-0.html#prerequisites] . I have installed AEM 6.2 .I have two questions, I want to know AEM 6.2 support SSR ? and if yes what might be the issue for the below error. 来源: https://stackoverflow.com/questions/62169720/aem-6-2-support-for-ssr-spa

Load select options dynamically from external service in Touch UI dialog in AEM?

喜你入骨 提交于 2019-12-25 03:15:39
问题 My problem is to load a select field in touch UI dialog with dynamic options. These options are coming from a external URL via webservices, I am consuming this RESTful services using url defined in one of our global javascript objects like $.get(mec.serviceConfig.baseUrl + '/movies'; Please understand that the options are coming from third party webservice please do not mention datasource. Whenever I search for loading select options dynamically I get this tutorial Link to Tutorial This is is

Image quality downgraded after resizing in AEM 6.3

ⅰ亾dé卋堺 提交于 2019-12-24 08:58:16
问题 I'm very new to AEM and I'm trying to reduce the image size by using named transform image servlet in AEM 6.3 . After reducing the image size using resize property, the image quality goes down terribly. I've also tried using attributes sharpen and quality however I'm not able to understand their proper usage even after going through the adobe docs. This is the original image resolution 1600 x 530 This is the image configuration that I've tried so far: bounded-resize:width=1423&height=471

How to add robots.txt file in AEM/CQ?

…衆ロ難τιáo~ 提交于 2019-12-11 07:24:10
问题 How to add the robots.txt file to an AEM server to provide rules for Web Crawlers in AEM? 回答1: Most you will refer to This Link To implement this. Although it may seem to serve the purpose you will notice one thing that could be a little "not right". Adding a robots.txt file directly in crxde causes the creation of a node of type nt:file in root level. So when you hit http://localhost:4502/robots.txt instead of you displaying on the screen/browser the file downloads. This is because of the

Where are the Configurations made in OSGi Console saved?

一笑奈何 提交于 2019-12-06 04:47:38
问题 When we update any configuration for a component in the Configurations tab in the Apache Felix Web OSGi Console, where are these configuration settings saved? This is with respect to AEM 6.0 or above. 回答1: The manually saved configuration settings are stored in the the crx-quickstart/launchpad/config directory (in your AEM installation folder in the local file system) and, on top of that, as .config files in the Content Respository at /apps/system/config . For example, if you're looking for

Where are the Configurations made in OSGi Console saved?

折月煮酒 提交于 2019-12-04 12:56:10
When we update any configuration for a component in the Configurations tab in the Apache Felix Web OSGi Console, where are these configuration settings saved? This is with respect to AEM 6.0 or above. The manually saved configuration settings are stored in the the crx-quickstart/launchpad/config directory (in your AEM installation folder in the local file system) and, on top of that, as .config files in the Content Respository at /apps/system/config . For example, if you're looking for the configuration of com.example.MyComponent , you can find it as a text file in crx-quickstart/launchpad

Adding styles in rich text Touch ui multifield

天大地大妈咪最大 提交于 2019-12-02 09:28:35
问题 I was trying to create a multifield touch ui text component in AEM 6.2. I created it by adding a field with the following resource type: <test jcr:primaryType="nt:unstructured" sling:resourceType="cq/gui/components/authoring/dialog/richtext" fieldLabel="Touch Ui Text" name="./test" renderReadOnly="{Boolean}true"/> It worked.But I have to add styles as a plugin in my mutifield text component which I am unable to do. How to add the plugins just like we add rte plugins in classic ui? I need to

Adding styles in rich text Touch ui multifield

老子叫甜甜 提交于 2019-12-02 06:23:40
I was trying to create a multifield touch ui text component in AEM 6.2. I created it by adding a field with the following resource type: <test jcr:primaryType="nt:unstructured" sling:resourceType="cq/gui/components/authoring/dialog/richtext" fieldLabel="Touch Ui Text" name="./test" renderReadOnly="{Boolean}true"/> It worked.But I have to add styles as a plugin in my mutifield text component which I am unable to do. How to add the plugins just like we add rte plugins in classic ui? I need to provide various styles in the rich text editor as part of multifield. Thanks for helping! It appears the