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: how to print -314% in home page using pi value=3.14 in slightly - Adobe Experience Manager 01-08-2022
@Babita11 Use HTL Number format [1], documentation says: The formatting pattern supports both a positive and negative pattern, separated by semicolon. Each sub-pattern can have a prefix, a numeric part and a suffix. The negative sub-pattern can only change the prefix or/and suffix. The following characters are supported, at minimum: 0 - digit, shows as 0 if absent # - digit, does not show if absent . - decimal separator - - minus sign , - grouping separator E - separator between mantissa and exp...

Views

75

Like

1

Replies

0
Re: When developer want to use core component(without sample content), use to download and verify before use then .Which version of Aem we can use -> OPTIONS [1]Version6.3, [2] AEM as cloud service, - Adobe Experience Manager 29-07-2022
You can use either option. The only difference is, Core components are part of AEMaaCS, while in on-prem setup, you need to install it (either via POM dependency or manually).

Views

38

Like

1

Replies

0
Re: Styles are not working in inplace editing - Adobe Experience Manager 27-07-2022
Inplace editing/dialog configuration open in different contexts and do not consider css/js included in your template. Though, you can use externalStyleSheets [1] in RTE configuration to specify project-specific styles to be used in edit mode. Navigate to the root node of your text component, for example /apps//components/text. Name externalStyleSheets Type String[] (multi-string; click Multi in CRXDE) Value(s) The path and filename of every style sheet you want to include. Use repository paths. ...

Views

39

Like

1

Replies

0
Re: Domain Name Root Mapping Issue - Adobe Experience Manager 27-07-2022
Check your apache rewrite logs and try to debug which rule is converting request to /?cache

Views

88

Like

1

Replies

1
Re: Domain Name Root Mapping Issue - Adobe Experience Manager 27-07-2022
I feel its because of the rule of adding .html extn What may be happening is: 1. Request for root domain reach to apache as URI "/" 2. the add .html extn update URI to "/.html" Now this URI does not map to any further rule, so throw 404. Try moving this rule towards the end # Add .html extension when extension is missing from request RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^([^.]*[^./])$ $1.html [R=301,L]

Views

98

Likes

2

Replies

3
Re: Where the Permission data gets stored in CRXDE. - Adobe Experience Manager 26-07-2022
Users and groups are stored under /home node. Please see [1] for details. [1] https://experienceleague.adobe.com/docs/experience-manager-64/administering/security/security.html?lang=en

Views

72

Like

1

Replies

0
Re: Component name is breaking when adding to a page - Adobe Experience Manager 26-07-2022
@akhilr48142671 So the resourcePath is pointing to your component when you place it on content/jcr:content?

Views

84

Likes

0

Replies

0
Re: 400 Invalid recursion selector value 'model' - Adobe Experience Manager 26-07-2022
Just cross-check if content nodes in your experience fragment is having any self-call, eg. Experience fragment -> component A -> Experience fragment or Experience fragment -> component A -> Component B -> Component A

Views

45

Like

1

Replies

0
Re: Component name is breaking when adding to a page - Adobe Experience Manager 26-07-2022
Can you check and confirm, if you dont have another component with name "global_nav_categorie" (without s)? I noticed that your component global_nav_categories is part of group General, so check if you may have created another component with the same name (without s) and make it part of your project group.

Views

87

Like

1

Replies

2
Re: Use of usergenerated node under content - Adobe Experience Manager 26-07-2022
/content/usergenerated node is used to store User Generated Content, usually called UGC [1]. Consider a use case, where you allow website users to write comments on article pages. Now, these comments will be saved on one of the publishers. Using Reverse Replication [2] this comment is pushed back to the author under /content/usergenerated node. You will have the option to initiate governance & moderation workflow on this comment, and once approved, publish this comment to all publishers. [1] htt...

Views

30

Likes

0

Replies

0