AEM · AEM 6

AEM | Classic UI – Multifield – Auto-populate Value


Multifield is a commonly used xtype in AEM components. It allow author to add a list of values. Sometime we need to use multifield to allow authors to add no of values (in a pattern). An example is Tabs/Accordion Component, we can allow authors to add no of tabs/accordions in multifield and add values like… Continue reading AEM | Classic UI – Multifield – Auto-populate Value

AEM · AEM 6

AEM | Classic UI – Multifield – Add Limits


Multifield xtype OOB Provides two property to set Minimum & Maximum Limits. Configuration: <config jcr:primaryType=”cq:Widget” fieldLabel=”Configuration” minItems=”1″ maxItems=”1″ name=”./config” xtype=”multifield”> <fieldConfig jcr:primaryType=”nt:unstructured” allowBlank=”{Boolean}false” fieldLabel=”Value:” xtype=”textfield”/> </config>

AEM · AEM 6

AEM | RTE – Custom Styles Plugin – Classic UI


Goal: Create RTE (Rich Text Editor) fontstyle & fontcolor plugin for Classic UI. A Similar Touch UI RTE Extension is available here Note: Please see RTE – Custom Styles Plugin for understanding of Custom Styles plugin requirement. Download: Source Code | Package Install Preview Solution Login to CRXDE Lite (http://localhost:4502/crx/de) and create folder /apps/rte/plugins/classic-ui-styles Create node /apps/rte/plugins/classic-ui-styles/clientlib of type cq:ClientLibraryFolder and add a String… Continue reading AEM | RTE – Custom Styles Plugin – Classic UI

AEM · AEM 6 · Sightly

AEM | ACS – Generic List | Support Site Inheritance


Generic List is a feature (by ACS AEM Commons) allowing easy creation and management of lists of title/value pairs. These lists can be managed by content team and will be used in Component’s dialogs. So instead of hardcoding dropdown values in dialog, we can point to any generic list and this list will be configured and managed by editors.… Continue reading AEM | ACS – Generic List | Support Site Inheritance

AEM · AEM 6

AEM | ACS – Generic List | Dialog Configuration – Classic UI


This article will explain how to identify and retrieve values from a list for current site, which is configured in Classic UI dialog’s dropdown. Note: Please see Generic List – Support Site Inheritance for understanding of Generic List requirement and complete solution. For Touch UI, Please see Generic List | Dialog Configuration – Touch UI Classic UI dialog’s dropdown support JSON… Continue reading AEM | ACS – Generic List | Dialog Configuration – Classic UI