AEM6.4

How to make Sling Interface in AEM

Here I am going to tell you that we can also use the Sling interface instead of the Sling model. We use sling model in case where we have to do manipulation over data. But where we want to show only values we can use sling interface. Sling Interface is shown below. In Sling Interface […]

Read More

Removing extra component div in AEM

While you make a component and if you see the HTML of the component in publish mode then it contains the extra div of the component due to this your css and js might break. So to remove the component div you have to make cq:htmlTag node inside your component. This node primaryType is nt:unstructured. […]

Read More

AEM 6.4 Touch UI Rich Text Editor Remove Bold and Add Strong

AEM RTE Bold plugin wraps text with “b” tag by default, but now “b” tag is not recommended so far and for accessibility also we need “Strong” tag.  <b> is a style – we know what “bold” is supposed to look like. <strong> however is an indication of how something should be understood. “Strong” could […]

Read More