FLEX in CSS

Q1. Why do we need flex? a. The reason we need to use flex is because it is supported in all major browsers. b. We don’t need an external library for using flex. c. We don’t need properties of CSS like width, float, position when using flex. d. Flex also manages the height of the […]

Read More

OR Split in Workflow in AEM 6.5

The OR Split creates a split in the workflow, after which only one branch will be active. This step enables you to introduce conditional processing paths into your workflow. You add workflow steps to each branch as required. OR Split – Configuration Common Tab :  In this tab, only one property will be display :  […]

Read More

Dialog Participant Step in Workflow in AEM

Normally, we use Dialog Participant Step to collect the small amount of data from the  user who is assigned to the workitem. We collect this information through dialog and this data is used later in the workflow. On the basis of this data we can perform some actions. Dialog Participant Step – Configuration Common Tab […]

Read More

AEM as a Cloud Service – Part 1

Some of the Benefits of moving to AEMaaCS As per Adobe documentation, AEM as a Cloud Service provides a continuous delivery pipeline for the AEM codebase using CI/CD pipeline. It provides automatic updates with zero downtime. This gives an advantage of keeping you on the most recent version. It will deliver content quickly and efficiently, […]

Read More

How to Dynamically populate OOTB Table Component in Adaptive Form

In this blog, I want to share how you can dynamically prepopulate out of the box table component. You do not have to create your own custom table component to serve data dynamically in form of table. First, drop out of the box table component on to page as shown:- Now for example, I want […]

Read More

Prefill Service in Adaptive Forms

In this blog, I want to share how we can use the Prefill Service feature in adaptive forms. What is the use of Prefill Service? It is used to prepopulate the form with given values. How to create Prefill Service? For creating prefill service you need to create an osgi component. For example:- In my […]

Read More

SAML Integration with AEM

SAML (Security Assertion Markup Language) is a key technology through which we can achieve SSO (Single Sign On). In Adobe Experience Manager (AEM) 6.x, a SAML authentication handler is provided by default. How to configure SAML in AEM? There are some simple steps through which we can configure SAML in AEM Go to the AEM […]

Read More

Use of Import-component.js in React with AEM

If you are using the archetype used in part 1 , then your react module contains a file called import-components.js . 1.What is the Use of import-component.js ? You need to import the components inside import-components.js , Otherwise, you will not be able to show your component into the page.i.e. Here is the location of […]

Read More

SPA in AEM 6.5 Part 2

1. How to create a custom SPA component ? Lets create a component in AEM For creating custom component you need to remember these things i.e. There is a mapping of components between aem module and react module. We should use Sling exporter to export our component json and so that it can be accessed […]

Read More

SPA in AEM 6.5 Part 1

What is SPA? SPA stands for single page application. It is a new feature in AEM 6.5 which helps us to build single page applications using react or angular with AEM. How SPA works in AEM? Let’s understand the flow using this diagram — We have an AEM Component in which we can have nodes […]

Read More