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

Aditya_Chabuku
Aditya_Chabuku
Online

Badges

Badges
17

Accepted Solutions

Accepted Solutions
13

Likes Received

Likes Received
44

Posts

Posts
32

Discussions

Discussions
10

Questions

Questions
22

Ideas

Ideas
0

Blog Posts

Blog Posts
0
Top badges earned by Aditya_Chabuku
Customize the badges you want to showcase on your profile
Re: How to extract values from a multifield inside custom dialog customization js? - Adobe Experience Manager 08-07-2022
Hi @ManuMathew1994 ,try this jquery code on label name you want to catch value of label, I tested & it works on multifield as well$("input[name='./']").parent().find("label").text()~Aditya.Ch

Views

45

Like

1

Replies

0
Re: AEM6.5 edit dialogue is not opening in author - Adobe Experience Manager 07-07-2022
Hi @kyasam , There is no limit for adding nodes in the Component's dialog. Coming back to your original question, please check how JS is calling that page, because I see there is a JS error from the screenshot.If there is no errors in JS, then there might be timing issue with JS, use below format for content-load operations. ~Aditya.Ch(function(document, $) { "use strict"; $(document).on("foundation-contentloaded", function(e) { // your code }); })(document, Granite.$);

Views

93

Like

1

Replies

1
Re: Error when Downloading assets in AEM 6.5.2 - Adobe Experience Manager 07-07-2022
Hi @BRAGAD , You should be able to download any asset from AEM. If not, then please do these steps.Go to error.log & access.log files of that AEM instance & see what logs are printing there.Try to check your read permissions on that particular location. e.g: /content/dam/wknd/en/siteI tried to do it on wknd asset with just read permissions & its working good for me. ~Aditya.Ch

Views

77

Likes

2

Replies

0
Re: Docker Image Error - Adobe Experience Manager 05-07-2022
Hi @Rohan_Garg , as per your logs Docker might not be the issue, its the Dispatcher which is unable to reach publish instance even though it's in your local machine. So check your Dispatcher configurations for publish instance hostname & port. something looks like this. Read this page for more info on dispatcher ~Aditya.Ch # The load will be balanced among these render instances /renders { /rend01 { # Hostname or IP of the render /hostname "127.0.0.1" # Port of the render /port "4507" } }

Views

86

Likes

2

Replies

1
Re: What component to be used for video in AEM 6.5 ? - Adobe Experience Manager 05-07-2022
Hi @Mario248 , There is no direct OOTB video component readily available. Even though there is an option similar to it, you have to Install FFmpeg and configure AEM separately & also Configure your Video Profiles.This is not feasible for a few, in that case we have to custom implement. You can see feature/video_component code for your refernce. ~Aditya.Ch

Views

163

Like

1

Replies

0
Re: Issues with loading fonts in AEM - Adobe Experience Manager 04-07-2022
Hi @aemninja , The issue is with references, you are trying to refer along with etc.clientlibs. please give a relative path from your file location to the clientlib-site folder by removing ../../../../etc.clientlibs/project/clientlibs. in your src. Also, Please refer to @arunpatidar 's solution below. ~Aditya.Ch

Views

119

Like

1

Replies

0
Re: Image policy AEM 6.5 - Adobe Experience Manager 04-07-2022
Hi @anasustic , While using Editable Templates after creating a new template or (updating policies of the old template) there will be an option to create/update a set of policies for each component under that template. Those are called Component level policies & they can be directly used on pages from the style system.May this video helps you to understand better the style system & policies. ~Aditya.Ch

Views

69

Like

1

Replies

1
Re: Include Component in JSP in AEM - Adobe Experience Manager 04-07-2022
Hi @haritha6 , It seems like you are trying to implement Content Fragment into your component.for that, try to implement Content Fragment component from core components into your project by sling:resourceSuperType = /core/wcm/components/contentfragment/v1/contentfragment.change jsp to HTML & write your custom HTL as required. OR if your requirement is to include a Content Fragment into your existing jsp component, then use as others said. ~Aditya.Ch

Views

121

Like

1

Replies

0
Re: Failed to load resource: net::ERR_TUNNEL_CONNECTION_FAILED - Adobe Experience Manager 04-07-2022
Hi @user00181 , I Just tried this in Incognito mode & it works fine. This seems to be more network firewall issues than AEM. ~Aditya.Ch

Views

138

Like

1

Replies

0
Re: Override Content Fragment List Core Component Dialog - Adobe Experience Manager 30-06-2022
Hi @Koustuva1 , By default, all content fragments of the model defined as Model Path are included in the list. So you only have one option to override it.But, You can override like this. Write your own servlet with resourceType /contentfragmentlistCreate a ContentFragmentList component in your project, write cq:dialog with model node Datasource pointing to above resourceType.your Servlet will be just like this except at line 89 modify code like this, parameterMap.put("path", "/conf/") Hope this ...

Views

78

Likes

2

Replies

1