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: Component Report: ACS AEM Commons / Reports / Components Report - Adobe Experience Manager 26-07-2022
AEM OOB provides a component list feature [1] [2], which lists down all components available in your AEM instance, clicking on any component will list down all pages, on which this component is used. If you are looking to download list of components used on a page, you should write a custom report using ACS Commons Report Builder [3] capability. [1] http://localhost:4502/libs/wcm/core/content/sites/components.html [2] https://experienceleague.adobe.com/docs/experience-manager-learn/sites/compone...

Views

66

Like

1

Replies

1
Re: Template Senarios - Adobe Experience Manager 22-07-2022
Its quite a strange use case. Are both templates identical ? 

Views

96

Likes

0

Replies

0
Re: I created page using create-> page under parent page. But it is not inheriting page properties of parent page. Please suggest. - Adobe Experience Manager 22-07-2022
@sangrampatil111 When you say inheriting parent properties, do you mean inheriting it via JavaCode?You can achieve it by using InheritanceValueMap in your Model.import com.day.cq.commons.inherit.InheritanceValueMap; import com.day.cq.commons.inherit.HierarchyNodeInheritanceValueMap; @ScriptVariable private Page currentPage; ... InheritanceValueMap ivm = new HierarchyNodeInheritanceValueMap(currentPage.getContentResource()); String inheritedValueMyCustomProperty = ivm.getInherited("myCustomerProp...

Views

96

Like

1

Replies

2
Re: Accordion component - Adobe Experience Manager 22-07-2022
The list of components can be limited by policies [1]. See the accordion component's allowed component tab [2] for details. [1] https://experienceleague.adobe.com/docs/experience-manager-65/developing/platform/templates/page-templates-editable.html?lang=en#content-policies [2] https://experienceleague.adobe.com/docs/experience-manager-core-components/using/components/accordion.html?lang=en#allowed-components-tab

Views

91

Likes

3

Replies

1
Re: Can we change the name of property. - Adobe Experience Manager 21-07-2022
You can change the property name, just update the dialog of the component and update the property name there. For existing content created using this component, you may need to write a script to update the property name. You can try ACS Commons on deploy scripts [1], this is supported for on-prem version only. [1] https://adobe-consulting-services.github.io/acs-aem-commons/features/on-deploy-scripts/index.html

Views

59

Likes

2

Replies

0
Re: How to unpublish a quick published PDF if the original PDF has been deleted? - Adobe Experience Manager 21-07-2022
You should check your Caching rules (browser cache rule on apache, dispatcher flush, and CDN caching) to make sure assets (like pdf) get flushed immediately or within the business agreed time.

Views

47

Likes

2

Replies

1
Re: Tooltip Syntax Error - Adobe Experience Manager 21-07-2022
In your tooltip javascript, decode html [1] [1] https://www.delftstack.com/howto/javascript/javascript-decode-html-entities/

Views

65

Like

1

Replies

0
Re: Tooltip Syntax Error - Adobe Experience Manager 21-07-2022
In the Title attribute, you are trying to render html, which is causing issue.Try encoding html

Views

77

Like

1

Replies

2
Re: How to unpublish a quick published PDF if the original PDF has been deleted? - Adobe Experience Manager 21-07-2022
Delete action on author Deactivate / Unpublish the asset first before deleting it. I believe PDF may be cached either on Browser/CDN or Dispatcher. Please try passing random query string ?q=123 to PDF link to check if it's also accessible.

Views

58

Like

1

Replies

3