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

Kiran_Vedantam
Kiran_Vedantam
Online

Badges

Badges
39

Accepted Solutions

Accepted Solutions
129

Likes Received

Likes Received
468

Posts

Posts
422

Discussions

Discussions
66

Questions

Questions
356

Ideas

Ideas
1

Blog Posts

Blog Posts
1
Top badges earned by Kiran_Vedantam
Customize the badges you want to showcase on your profile
Re: Page Preview issue - Adobe Experience Manager 14-12-2020
This is the error i can see in the log "page.js:274 Loaded the ACS Commons QR Code JavaScript but could not locate an configuration resource at [ /etc/acs-commons/qr-code/_jcr_content/config.json/contentpath]. Verify the config resource exists and and this user has access to said resource."

Views

746

Likes

0

Replies

0
Re: Page Preview issue - Adobe Experience Manager 14-12-2020
Hi @BRAIN, apologies for the delay. I will share the logs in some time.

Views

698

Likes

0

Replies

0
Re: Page Preview issue - Adobe Experience Manager 14-12-2020
Hi @Deleted Account, we are using AEM 6.4.7 and no custom popup is used

Views

773

Likes

0

Replies

0
Page Preview issue - Adobe Experience Manager 10-12-2020
When the preview button is pressed, the page loads continuously by not letting us click on the confirmation pop-up. This issue is seen only in the chrome browser and also in some content paths only. Tried increasing the Number of Calls per Request in "Apache Sling Main Servlet" but it did not help. Do we have any recommended value for this? Can anyone suggest a fix for this? Thanks,Kiran Vedantam.

Views

872

Likes

0

Replies

10
Re: What’s the overhead of getting a resource resolver in... - Adobe Experience Manager 07-12-2020
Whenever we use ResourceResolver, it’s a 100% chance that you will open a JCR session. Hence, we should call “close()” on every resolver once the job is done.API calls which open a JCR resource:SlingRepository.loginAdminstrative() , DEPRECATED!SlingRepository.loginService()API calls, which create a Sling ResourceResolver:ResourceResolverFactory.getAdministrativeResourceResolver(), DEPRECATED!ResourceResolverFactory.getResourceResolver()ResourceResolverFactory.getServiceResourceResolver() Also, w...

Views

717

Like

1

Replies

1
Re: How to add plugins in inplace editing of text component - Adobe Experience Manager 07-12-2020
Hi @Vinit_Pillai, You can follow the steps mentioned in the below URL to activate the required plugins. https://experienceleague.adobe.com/docs/experience-manager-65/administering/operations/configure-rich-text-editor-plug-ins.html?lang=en#configure-the-rich-text-editor-plug-ins Thanks,Kiran Vedantam.

Views

392

Like

1

Replies

0
Re: Question to HTL or Sightly experts - What is wrong with the HTL expression "${'{0}' in title ? title @ format=currentPage.parent.title : title}"? - Adobe Experience Manager 04-12-2020
Hi to replace and use parentpageTitle instead of title you can use the below code: ${'{0}' in title ? currentPage.getParent.getTitle : title} I am not sure why are you using @ format= here. Thanks,Kiran Vedantam

Views

1.0K

Likes

0

Replies

0
Re: Question to HTL or Sightly experts - What is wrong wi... - Adobe Experience Manager 04-12-2020
Hi @Sravan_Kumar_Si, Here is the working code: ${'{0} in title' @ format= currentPage.getParent.getTitle ? currentPage.getParent.getTitle : title} Put the {0} and the other strings in single quotes. Thanks,Kiran Vedantam.

Views

934

Like

1

Replies

1
Re: Handling JSP expressions in HTL/Sling Model - Adobe Experience Manager 02-12-2020
Hi @v1101, Here is what you can do: A. If the run mode that you are setting is STATIC, you can create a new string variable in the sling model and access it in HTL.Java:private String runMode;HTL:Also, you can let author select the value via dialog. You can also get it via slingSettingsService object:slingSettingsService.getRunModes(); B. In sling models request attribute can be set using the request object.Set the model adaptable to SlingHttpServletRequest@Model(adaptables = SlingHttpServletReq...

Views

324

Likes

3

Replies

0
Re: Is there any option through which only the metadata v... - Adobe Experience Manager 02-12-2020
Hi @Deepali1991, You can access the page properties in component HTML by using "pageproperties" object. Can you please elaborate on your query? Thanks,Kiran Vedantam.

Views

481

Like

1

Replies

1