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

BrianKasingli
BrianKasingli
Online

Badges

Badges
40

Accepted Solutions

Accepted Solutions
293

Likes Received

Likes Received
864

Posts

Posts
732

Discussions

Discussions
48

Questions

Questions
683

Ideas

Ideas
0

Blog Posts

Blog Posts
3
Top badges earned by BrianKasingli
Customize the badges you want to showcase on your profile
Re: cq:lastReplicated property is not updating in publish instance - Adobe Experience Manager 20-04-2022
When a page is published from Author -> Publisher, the publisher see's the resource as a new item added. You should be okay to use the currentPage.jcr:created as this date can represent the last replicated date. But however, just as a experiment for yourself, when looking at the Author, the jcr:created is the actual creation date of when the page was created (this date will neverchange), and you can actually find the cq:lastReplicated, as this will be the actual lastReplication date.

Views

82

Likes

2

Replies

0
Re: How to handle content change in one language copy and avoid changes in other language copies - Adobe Experience Manager 20-04-2022
Hey Veenu, You have 2 options: 1. When you are rolling out a page, you can deselect "fr" or other pages from being rolled out. Deselecting on the pages will ensure that live copies will not be created from the AEM rollout functionality.2. You can de-sync the the live copy node by deleting the cq:LiveSyncConfig node. Take a look at step 3 here, and delete the node -> https://sourcedcode.com/blog/aem/how-to-re-sync-a-live-copy-language-root-to-a-blueprint-in-aem-msm#step3-verify-liveSyncConfigNode...

Views

159

Likes

2

Replies

3
Re: writing sling model for nested multifield - Adobe Experience Manager 20-04-2022
This article always works for me: AEM: How to use nested Multifields in your components (using a Sling model vs pure HTL)https://levelup.gitconnected.com/aem-how-to-use-nested-multifields-in-your-components-using-a-sling-model-vs-pure-htl-92ff8d036ba1

Views

105

Likes

2

Replies

0
Re: Sly logic not working when adding a div just before and after - Adobe Experience Manager 20-04-2022
From experiences, I've noticed that HTML elements cannot be declared as non-pairs inside of sightly conditions, so like you must either use .Please change to -> Test 1 Test 2 // outputTest 1Test 2

Views

43

Likes

2

Replies

0
Re: Checking if a particular component is included in a page - Adobe Experience Manager 29-03-2022
Other than using the Query Builder (mentioned by most replies on this thread), you can Component Search by the Components Console.Under Tools -> General -> Components. The Components Console displays search results in a list of pages where the component is being used; rather than each node from the example above. This console is accessible to authors so that even they can check which pages use the searched component.Step 1: Within your running AEM instance, visit http://localhost:4502/libs/wcm/c...

Views

665

Likes

2

Replies

0
Re: Accessing SlingServlet Data into SlingModel - Adobe Experience Manager 25-03-2022
As a best practice to enforce re-usability, Maybe you can extract the business logic from the servlet into an OSGI service, so that all of your OSGI components can be using the same service.

Views

108

Likes

3

Replies

0
Re: about ContentFragment - Adobe Experience Manager 24-03-2022
@SivaReddy0128,you are absolutely right. When I analyzed the out of the box content fragment component, it does not have any options to display all fields for a given content fragment... dam/cfm/components/contentfragment. My suggestion is to create your own.

Views

104

Likes

3

Replies

0
Re: How to handle if condition in sightly - Adobe Experience Manager 16-03-2022
Using the sightly features, you can use the data-sly-test.A standard practice is to use ternary conditions in Sightly HTL. While using Sightly, I would like to highlight that you can use Slightly Global objects for rapid development. AEM Global Objects for Backend and Front-end Sightly (HTL) Development - Sourced Code; make sure you read #2, so you understand how Global AEM objects can be used.Note: if your conditions are more complicated and require some kind of business logic, such as calculat...

Views

457

Likes

3

Replies

0
Re: REST and AEM development - what's the deal? - Adobe Experience Manager 16-03-2022
Hello,AEM uses Apache Sling as the REST web application framework.

Views

52

Likes

3

Replies

0
Re: Common cause for NullPionterException or Null value in Junit test case for sling model in aem - Adobe Experience Manager 16-03-2022
You can add, addModelsForPackage, as this is another common null returned from adapt.aemContext.addModelsForPackage("com.sourcedcode.core.models.utils");

Views

85

Like

1

Replies

0