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: Requested profile "autoInstallSinglePackage" does not... - Adobe Experience Manager 22-12-2020
Hi @iosborne, Trying to understand your question: Whenever you are doing a build, you are only seeing ui.apps package but not other packages right? So in AEM, specific code/content/assets will be placed in different modules. Please check the module details below To install all the modules add them in the module section of your main pom.xml. Also, add a new profile to your main pom.xml for the ID that you are mentioning to get activated autoInstallSinglePackagefalsecom.day.jcr.vaultcontent-packag...

Views

2.7K

Like

1

Replies

0
Re: How to get resource bundle (for localization) in cust... - Adobe Experience Manager 18-12-2020
Hi @Sumit1191 You can use ResourceBundleProvider to fetch the ResourceBundle when you do not have the request object. Try this:@Reference (target= "(component.name=org.apache.sling.i18n.impl.JcrBundleProvider)")ResourceBundleProvider rbp; ResourceBundle bundle = rbp.getResourceBundle(locale); Reference: https://sling.apache.org/documentation/bundles/internationalization-support-i18n.html Thanks,Kiran Vedantam.

Views

800

Likes

3

Replies

2
Re: How to get resource bundle (for localization) in cust... - Adobe Experience Manager 18-12-2020
Did the previous post by answered your question? your query seems to be in resolved state

Views

791

Likes

0

Replies

0
Re: How to get resource bundle (for localization) in cust... - Adobe Experience Manager 18-12-2020
The I18n class has 2 constructors:1. To present the string in the language that is specified in the user accountI18n i18n = new I18n(slingRequest);2. For using the page locale:Locale pageLang = currentPage.getLanguage(false);ResourceBundle resourceBundle = slingRequest.getResourceBundle(pageLang);I18n i18n = new I18n(resourceBundle); Can you let me know how are you planning to trigger the workflow? Are you not using the servlet? Thanks,Kiran Vedantam.

Views

807

Like

1

Replies

2
Re: Page Preview issue - Adobe Experience Manager 18-12-2020
Marked this answer as correct answer as we have some custom popup which is causing the issue.

Views

722

Likes

0

Replies

0
Re: Announcing Experience League Community Member(s) of the year 2020 - Adobe Experience Manager 16-12-2020
Congrats Arun Patidar and Vaishali Negi. Well deserved. Thanks,Kiran Vedantam

Views

1.7K

Likes

3
Re: Page Preview issue - Adobe Experience Manager 15-12-2020
Hi All, Thanks for the prompt response. The issue is actually happening because of our custom pop-up which is placed at the end of the page and is not visible. @kautuk_sahni can you please close this question as we are looking into it from our end. Thanks,Kiran Vedantam.

Views

783

Likes

0

Replies

0
Re: tag move log - Adobe Experience Manager 14-12-2020
Whenever a tag is moved, a request will happen to URL:: http://localhost:4502/libs/cq/tagging/gui/content/tags/movetag.html/originalTagPath.You can use the above URL and check in the access.log to find the user who performed the action. Thanks,Kiran Vedantam.

Views

385

Like

1

Replies

0
Re: HTL Expression in Javascript - Adobe Experience Manager 14-12-2020
Hi @v1101 , To fetch the values from HTML to JS, you can add the Model value into the data attribute and in JS you can initialize the module and access it.HTML:data-modelValue='${modelObject.modelValue}'JS:function init($, $module) {const dom = {modelValue: $module.data(modelValue)}} We have different context elements andunsafe - use this at your own risk, this disables XSS protection completelyscripting - Applies JavaScript string escapingReference: https://github.com/adobe/htl-spec/blob/master...

Views

708

Likes

2

Replies

1
Re: Add superscript tag dynamically - Adobe Experience Manager 14-12-2020
Superscript is a plugin that is available in RTE. You can enable and author it as per your requirement. Advantages:Authoring activityNo code changesOne time activityNo technical knowledge needed Disadvantages:Time-consuming Reference: https://experienceleague.adobe.com/docs/experience-manager-65/administering/operations/rich-text-editor.html?lang=en#operations If you want to add it programmatically, you need to search the nodes that need the tag to be added and update the node. Pros:Less time co...

Views

451

Like

1

Replies

0