Your achievements

Level 1

0% to

Level 2

Tip /
Sign in

Sign in to Community

to gain points, level up, and earn exciting badges like the new
Bedrock Mission!

Learn more

View all

Sign in to view all badges

Manasi29
Manasi29
Offline

Badges

Badges
11

Accepted Solutions

Accepted Solutions
0

Likes Received

Likes Received
6

Posts

Posts
14

Discussions

Discussions
0

Questions

Questions
14

Ideas

Ideas
0

Blog Posts

Blog Posts
0
Top badges earned by Manasi29
Customize the badges you want to showcase on your profile
Re: How can we populate a generic list in form of dropdown in search box on a page? - Adobe Experience Manager 23-07-2022
Sharing sample code , hope this will help you - 1. Acs commons generic list associated with Indian cities - 2. Location of acs common generic list associated with Indian cities in AEM repository - /etc/acs-commons/lists/cities/jcr:content/list 3. Below sling model is responsible to read generic list associated with Indian cities - package com.aem.demo.core.models; import java.util.HashMap; import java.util.Map; import java.util.Objects; import javax.annotation.PostConstruct; import org.apache.sl...

Views

83

Like

1

Replies

0
Re: Inplace editing in RTE? - Adobe Experience Manager 05-07-2022
Please refer the following documentation links:https://www.bounteous.com/insights/2022/01/06/custom-rich-text-editor-plugins-adobe-experience-manager/http://www.sgaemsolutions.com/2019/02/cqinplaceediting-in-cqeditconfig-node_7.html

Views

92

Like

1

Replies

0
Re: How to add ACS AEM Commons to your AEM web console for creating service user? - Adobe Experience Manager 28-06-2022
The steps to embed ACS Commons remain the same for both AEM 6.x and AEMaaCS. https://adobe-consulting-services.github.io/acs-aem-commons/pages/maven.html

Views

235

Like

1

Replies

0
Re: What piece of code is executed when the aem dialog is submitted? - Adobe Experience Manager 08-06-2022
Hi @Manasi29 -When you submit a dialog, the properties entered into the dialog will be saved to that particular component using a POST call to the specific component path on the page. You can observe this in the Network tab of your browser Dev tools.Additionally, all clientlibs that have been marked with the category 'cq.authoring.dialog' and the custom clientlibs included as 'extraClientLibs' on your dialog get executed.

Views

74

Likes

2

Replies

0
Re: CRUD operations for Nodes. - Adobe Experience Manager 26-05-2022
You need to adapt the resource to a Node.class Node node = resource.adaptTo(Node.class); to create a child node you can use the "addNode" methods which returns the new created node Node childNode = node.addNode("newNode"); to read it from its parent you can do the following Node childNode = node.getNode("newNode"); to update its properties you can use the methods "setProperty", but you can add or remove mixin types and more with other methods if I remember properly Property property = childNode....

Views

68

Like

1

Replies

0
Re: AEM OSGI Services - Adobe Experience Manager 20-05-2022
Hi @Manasi29 There are multiple ways /options in getting the service we need via interface(binding respective service).Please refer my below blog where i provided all options with sample code.https://rajashankardigital.blogspot.com/2021/08/control-dependency-injection-in-osgi.html Regards,Rajashankar.R

Views

121

Like

1

Replies

0
Re: Creating FAQ page for a site using AEM components. - Adobe Experience Manager 03-05-2022
Hi @Manasi29 One approach to add styling to your Accordion is that you can add your own custom sass. For the icons, there are two default classes for normal and expanded view button, you can add icons there. It's better to use your own custom sass. .cmp-accordion__button { content: ; } .cmp-accordion__button--expanded {} Defining variables is better approach.

Views

88

Likes

0

Replies

0
Re: Writing Sling Models for Nested Multifields. - Adobe Experience Manager 24-04-2022
Sample code for nested multifields- 1. Sling model - package com.aem.demo.core.models; import java.util.List; import javax.inject.Inject; import org.apache.sling.api.resource.Resource; import org.apache.sling.models.annotations.DefaultInjectionStrategy; import org.apache.sling.models.annotations.Model; @Model( adaptables = {Resource.class}, defaultInjectionStrategy = DefaultInjectionStrategy.OPTIONAL) public interface CompaniesModel { @Inject List getCompanies(); // the name `getCompanies` corre...

Views

145

Like

1

Replies

0
Re: Services and Tagging - Adobe Experience Manager 23-04-2022
Can you please elaborate the significance of 4th line of this code and also what are PN_TAGS_MATCH, TAGS_MATCH_ANY_VALUE??

Views

126

Like

1

Replies

0
Re: What exactly is a sling model in AEM and what are the various use cases of Sling Models? To be precise about the question how can I make use of Sling models while creating a website using AEM? - Adobe Experience Manager 12-04-2022
@Manasi29 As regards your second question, it depends on what kind of Components you are building for different Pages (Sling models are recommended for Components, where you are writing backend logic and you want it to achieve it with writing less Code (organized, modularized, short, and concise)). Coding components with sling models is the recommended AEM best practice from Adobe, as demonstrated by the implementation patterns in WCM Core Components. Please go through the above URLs I highlight...

Views

290

Likes

3

Replies

0