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

Mohit_KBansal
Mohit_KBansal
Online

Badges

Badges
28

Accepted Solutions

Accepted Solutions
23

Likes Received

Likes Received
136

Posts

Posts
94

Discussions

Discussions
18

Questions

Questions
76

Ideas

Ideas
1

Blog Posts

Blog Posts
3
Top badges earned by Mohit_KBansal
Customize the badges you want to showcase on your profile
Re: How to get responsivegrid data using jcr api - Adobe Experience Manager 21-07-2022
Hi @akshaybhujbale ,You ca iterate nodes. Get ResourceResolver as per your project setup. Get Session from ResourceResolver and iterate nodes. This is just pseudo code. Session session=resourceResolver.adaptTo(Session.class); Node node=session.getNode("Path to parent node"); NodeIterator nodeIterator= node.getNodes(); while (nodeIterator.hasNext()){ Node child=(Node)nodeIterator.next(); }You can use resource api as well. Once get resource and adaptTo node.

Views

36

Like

1

Replies

0
Re: Finally! All The AEM Content You Need, All in One Place on AEM Community! - Adobe Experience Manager 20-07-2022
That's a great news, Thanks you @kautuk_sahni and team for providing us expert community contents under one roof.

Views

182

Like

1
Re: Implement interactive graphic in AEM cloud - Adobe Experience Manager 20-07-2022
See this doc, it may help : https://experienceleague.adobe.com/docs/experience-manager-65/forms/interactive-communications/chart-component-interactive-communications.html?lang=en

Views

44

Like

1

Replies

0
Re: how can I access a javascript variable in my HTL attribute - Adobe Experience Manager 20-07-2022
As mentioned by Arun, you can not use clientSide variables to render server side scripts. In this case, you render your HTML and use javascript to show/hide block based on js Variable value. ${"America" @ i18n, context='html'} # Hide showInput div block on page load .showInput { display: none; } if(isTrue) { // Display showInput div block if JS object is true }

Views

53

Likes

2

Replies

0
Re: Content Fragment with Multifield - Adobe Experience Manager 20-07-2022
@Mohit_KBansal and all, interestingly I am able to create content fragments and edit with CF with data.But only issue, I can not goto CF model folder and edit the model.

Views

50

Like

1

Replies

0
Re: Need to count the items present in same category in json. - Adobe Experience Manager 19-07-2022
It really depends on the JAVA library you are using. Take some time to Google Java docs that correspond to the Java library you are using.Assuming that you are using the org.json library, you can call on the size method, for example: import org.json.simple.JSONArray; import org.json.simple.JSONObject; ... JSONArray array = new JSONArray(); array.add("e-mail: krishna_kasyap@gmail.com"); array.add("phone: 9848022338"); array.add("city: Hyderabad"); array.add("Area: Madapur"); array.add("State: Tel...

Views

34

Like

1

Replies

0
Re: Can we create site in default folders apart from /content? - Adobe Experience Manager 18-07-2022
Thanks Mohit, that helps.Also I saw that content folder can be renamed, which moves the existing data from /content to somewhere else.Just wanted to know where does this data go and how many such content folders can be created?

Views

59

Like

1

Replies

0
Re: Multiple AEM requests are being sent to the server at the same time, and responses are being swapped or overridden - Adobe Experience Manager 17-07-2022
For issue #1: Check global variables and debug what values you are getting on different user ids in your servlet code.Issue #2:default Apache header size is 8 KB. You can increase limit to 16 or 32 KB. In httpd.conf fileLimitRequestFieldSize 16000Restart apache server. "service httpd restart"

Views

42

Like

1

Replies

0
Re: How to remove the Responsive Grid div in AEM? - Adobe Experience Manager 15-07-2022
Hi,If you don't want grid then use simple parsys.if you ant to remove just styling then remove reference of grid css from your project or oveeride css.

Views

62

Like

1

Replies

0
Re: How do I show the tagging values as a dropdown list in Dialog? - Adobe Experience Manager 13-07-2022
Thanks @Shiv_Prakash_Patel Can I use the bin in the servlet path?@Component(service = Servlet.class, property = {Constants.SERVICE_DESCRIPTION + "= Tags value in dynamic Dropdown", "sling.servlet.paths=" + "/bin/cardTagLists", "sling.servlet.methods=" + HttpConstants.METHOD_GET })Does it have any issues? Or if I need to change the path, which path do you prefer?

Views

63

Likes

0

Replies

0