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

ibishika
ibishika
Offline

Badges

Badges
23

Accepted Solutions

Accepted Solutions
16

Likes Received

Likes Received
78

Posts

Posts
64

Discussions

Discussions
10

Questions

Questions
54

Ideas

Ideas
1

Blog Posts

Blog Posts
0
Top badges earned by ibishika
Customize the badges you want to showcase on your profile
Re: Automatically rewrite links to remove /content/ path? - Adobe Experience Manager 07-01-2022
You need to write a service to process the links based on whatever the criteria you want.Now in each of the component/places where you use any link, call that service to process the link and return the updated link that you get from the service.

Views

217

Like

1

Replies

0
Re: Display and bound values of a dropdown list - Adobe Experience Manager 07-01-2022
Not very sure if I understand the question. Do you mean to say that you want to populate the last three fields depending on the selection of the dropdown?

Views

125

Like

1

Replies

1
Re: Rootpath blocking servlet - Adobe Experience Manager 03-01-2022
Could you please elaborate the issue a bit. Does it stop working only for a specific rootpath? Or it does not work even if you change the rootpath?Did you try checking the logs for errors? Please share the errors that you are getting in logs.

Views

107

Like

1

Replies

0
Re: How to include a core module package from one site in another site's core module? - Adobe Experience Manager 03-01-2022
Add a dependency in your core pom of your second site. Something like this: com.myproject common-code 1.0.0 The artifactId and groupId should be same as you have defined in your project(first site). Then you can use it in your HTL pretty much same way how you would use when you call it in the same project. May be you can refer this link for more details: https://stackoverflow.com/questions/15383322/how-do-i-add-a-project-as-a-dependency-of-another-project

Views

123

Likes

3

Replies

1
Re: Unit testing custom component - Adobe Experience Manager 15-12-2021
You can refer this link for Junit tests:https://experienceleague.adobe.com/docs/experience-manager-learn/getting-started-wknd-tutorial-develop/project-archetype/unit-testing.html?lang=en

Views

151

Like

1

Replies

0
Re: currentStyle.getPath() returning wrong path in publish mode - Adobe Experience Manager 15-12-2021
Try using this:currentStyle.getDesign().getJSON(); And parse the values returned from it.

Views

278

Like

1

Replies

1
Re: Content Fragment Component Validation - Adobe Experience Manager 21-09-2021
@NitinL Sorry, I misunderstood the question. In this case you will have to go with a custom validation script. This might take more effort than sounds. I think, you will have to check the resourceType from backend code and use jquery to fetch that and validate.

Views

397

Like

1

Replies

1
Re: How to access sling request object in OSGI Service - Adobe Experience Manager 21-09-2021
@ravi_joshi You can try method overloading. Just create a version of the method with an extra parameter to take this field value(which you are injecting in the model). That way it won't affect the existing classes which are using the same method.

Views

835

Likes

3

Replies

1
Re: Content Fragment Component Validation - Adobe Experience Manager 21-09-2021
@NitinL Follow the below steps:1. Overlay the contentfragment dialog from libs to apps. You can find the core component in this path: /libs/core/wcm/components/contentfragment/v1/contentfragment/cq:dialog/2. Add a property "required" "Boolean" "true" to the fragmentPath field(/libs/core/wcm/components/contentfragment/v1/contentfragment/cq:dialog/content/items/tabs/items/properties/items/column/items/fragmentPath). required Boolean true

Views

410

Like

1

Replies

3
Re: How to access sling request object in OSGI Service - Adobe Experience Manager 21-09-2021
@ravi_joshi I need answer to two questions in order to understand the scenario better.1. How the service is being triggered? Is it happening from some other source?2. Are you planning to use the component only once in each page?

Views

858

Like

1

Replies

3