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

saurabh_kumar_02
saurabh_kumar_02
Online

Badges

Badges
15

Accepted Solutions

Accepted Solutions
2

Likes Received

Likes Received
24

Posts

Posts
34

Discussions

Discussions
11

Questions

Questions
23

Ideas

Ideas
0

Blog Posts

Blog Posts
0
Top badges earned by saurabh_kumar_02
Customize the badges you want to showcase on your profile
Re: HTTP ERROR 500 Server Error while login to crx/de - Adobe Experience Manager 02-06-2022
Hi @kbitra1998 Try to Update config file at crx-quickstart\launchpad\config\org\apache\felix\jaas\Configuration\factory In past i was facing same issue. This resolved my Issue RegardsSaurabh

Views

88

Like

1

Replies

0
Re: Notify for page expiry date - Adobe Experience Manager 02-06-2022
Hi @arunpatidar could you please share me the logic sample or github repo link where I can find logic for assets expiry scheduler so that I could use it as refrence. Thanks in advance

Views

84

Like

1

Replies

0
Re: Bulk Generate page Thumbnails - Adobe Experience Manager 01-06-2022
Hi @saurabh_kumar_02 Currently Adobe uses PageThumbnail.js(/libs/cq/gui/components/common/wcm/clientlibs/wcm/js/pagethumbnail.js) for the thumbnail generation. Please check the method function generate() that is used for thumbnail generation.You can use this function to generate the page thumbnails and loop it for all the pages. Please note that this generate only file.sftmp on the jcr that is used to hold temporary assets data in JCR.

Views

118

Likes

2

Replies

0
Re: Not able to see folders under Content Fragment Models - Adobe Experience Manager 01-06-2022
Please check your permission

Views

124

Likes

2

Replies

0
Re: How to set limit to RTE for limited chars - Adobe Experience Manager 01-06-2022
This Blog worked for me. URL-richtext-max-characters-length-validation 

Views

39

Like

1

Replies

0
Re: How to set limit to RTE for limited chars - Adobe Experience Manager 01-06-2022
Hi @Anmol_Bhardwaj ,If we use this JS then will not have full control on giving Input.

Views

65

Like

1

Replies

0
Re: How to restrict number of component - Adobe Experience Manager 03-04-2022
Hi Ritesh, I am also looking to set max limit of components that can be added in carousel component, the youtube video that you have added is removed. Could you please provide me the link with detail to implement the same. ThanksArpitha P

Views

155

Likes

0

Replies

0
Re: How to add plugins for RTE in content fragment in AEM 6.5 - Adobe Experience Manager 10-03-2022
Hi @Siva_Sogalapalli Thanks second option is also working. 

Views

258

Likes

2

Replies

0
Re: content fragment showing blank page on edit - Adobe Experience Manager 10-03-2022
Hi @saurabh_kumar_02 Is it an issue with only Multi Line text field? Are you able to access any other Content Fragments which has different type of fields? If it's global issue, please verify whether you're using latest core components or not. I had similar issue with experience fragments and it got fixed after installing latest core components package. you may try installing latest core components and see if that helps on your local. btw, Which version of AEM & core components are you using?

Views

102

Like

1

Replies

0
Re: how to sort list of Page on basis of (title, template, lastModified) - Adobe Audience Manager 16-12-2021
Hi @saurabh_kumar_02, sorting lost of pages can be done in similar way to sorting list of any other java object, i.e you can implement Comparator. Below you can find simple Comparator implementation that will allow you to sort list of Pages by page title (jcr:title).import com.day.cq.wcm.api.Page; import java.util.Comparator; import java.util.Collections; import java.util.List; // List with pages List pages // sorting list of pages using custom comparator Collections.sort(pages, new PageByTitleC...

Views

270

Likes

2

Replies

0