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

Umesh_Thakur
Umesh_Thakur
Offline

Badges

Badges
32

Accepted Solutions

Accepted Solutions
69

Likes Received

Likes Received
228

Posts

Posts
225

Discussions

Discussions
25

Questions

Questions
200

Ideas

Ideas
0

Blog Posts

Blog Posts
2
Top badges earned by Umesh_Thakur
Customize the badges you want to showcase on your profile
Re: How to Create an Ecommerce Website Using Magento 2 | AEM Community Blog Seeding - Adobe Experience Manager 02-09-2021
Thanks for sharing this Kautuk, I am desperately looking for a solution to migrate one of our project to AEM based ecom.

Views

228

Like

1

Replies

0
Re: Model exporter xml - how customize response content-type - Adobe Experience Manager 31-08-2021
Can you please have a look on the below article:http://www.sgaemsolutions.com/2018/01/custom-sling-model-exporter-in-aem-63.htmlhope this will help.Umesh Thakur

Views

602

Like

1

Replies

11
Re: AEM Multi-fields not returning from Sling Model - Adobe Experience Manager 30-08-2021
No need to have a different model for the same, same model will work here.Only you need to get the Iterator object of the parent resource by calling the listChildren of it like:Iterator iterator = parentResource.listChildren();while(iterator.hasNext()){ Resource childResource = iterator.next();// here you have your child resources// do what ever you want for child resources.} but will be better this if you create a list instead of passing the child resource to the sightly. Hope this will help.Um...

Views

2.0K

Like

1

Replies

1
Re: Intellij Plugins connecting with AEM Local - Adobe Experience Manager 27-08-2021
did you try AEM IDE from jetbrains. this is having all the required functionality like suppport for HTL and filevlaut as well. only demerit is you need to pay for it https://plugins.jetbrains.com/plugin/9269-aem-ideHope this will help.Umesh Thakur

Views

392

Likes

2

Replies

1
Re: Show hide tabs based on dropdown selection - Adobe Experience Manager 27-08-2021
See the below article which will walk you thru to implement your requirement in coral3 UI, which is the latest one.https://www.albinsblog.com/2019/02/how-to-hideshow-tabs-in-coral-3-ui-dialogs-aem.html#.YSjBVNMzbsoHope this will help.Umesh Thakur

Views

878

Like

1

Replies

0
Re: AEM Multi-fields not returning from Sling Model - Adobe Experience Manager 26-08-2021
yes I can see issue in your code in the model annotation that is, you need to put adapters value in your case as you are inheriting one interface in your model.You already had done in your existing code at line #21. so your final @Model will be like: @Model(adaptables = {Resource.class}, adapters = {HeroBannerComponent.class}, defaultInjectionStrategy = DefaultInjectionStrategy.OPTIONAL)public class HeroBannerComponentImpl implements HeroBannerComponent {} Hope this helps.Umesh Thakur

Views

2.0K

Like

1

Replies

4
Re: Unable to load the migrated node properties in AEM dialog - Adobe Experience Manager 25-08-2021
Can you please see the browser's console for any error while opening the dialog. It seems there are some issue with dialog's xml either in a form of using granite or coral UI in the same dialog or maintaining the pattern of granite UI while creating a dialog with corl UI.Please see in that prospect.Hope this will help.Umesh Thakur

Views

221

Like

1

Replies

1
Re: Moving from pathbrowser to pathfield - Adobe Experience Manager 25-08-2021
I. don't think so we have any option provided out of the box to handle your requriment.then only way you have is, use javascript or jquery to create that feature in your dialog.Hope this will help.Umesh Thakur

Views

195

Like

1

Replies

0
Re: AEM Multi-fields not returning from Sling Model - Adobe Experience Manager 25-08-2021
First of all you should not make your sling model adaptables to SlingHttpServletRequest specially to get value from multifiled. then you made a mistake by trying to directly inject your resource for multifield. These are some mistake you have done prima-facie.Please go thru the below article which fits 100% in your requirement.https://helpx.adobe.com/experience-manager/using/aem64_htl_repeat_slingmodel.htmlJust see the sling model import javax.annotation.PostConstruct;import javax.inject.Inject;...

Views

2.1K

Likes

2

Replies

7