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: How to initialize ResourceResolver reference variable. - Adobe Experience Manager 09-06-2022
@akshaybhujbale,The best practice is to utilize the system user. If you like videos, take a look at this one. It's an easy to follow youtube video from AEM Geeks, https://www.youtube.com/watch?v=H_ljzX9B4Q

Views

122

Likes

2

Replies

1
Re: npm install failed error - Adobe Experience Manager 09-06-2022
Hello @Tessa_learner1, It looks like you are using the latest Node and npm version which may not support some node modules that is installed from the package.json. Try to play around with the npm version and see if that works. From testing myself, I realize that the latest Node and NPM version do not work.

Views

67

Likes

3

Replies

1
Re: How to set default value in a Touch UI select element? - Adobe Experience Manager 09-06-2022
@naruk89179065,It really depends on which granite UI field are you targeting. Typically you will add an extra property to the XML configuration.But here's a quick run down for which property sets a default value for which Granite UI fields that you are targeting:checkbox - value, link reference textarea - value, link referencepathfield - cannot set default, link referenceselect - selected, link referenceradiogroup - checked, link referencenumberfield - value, link referencefileupload - cannot se...

Views

101

Like

1

Replies

2
Re: sling servlet - Adobe Experience Manager 25-05-2022
You can also call the out of the box content APIs (which utilizes servlets) in AEM like: .model.json - https://experienceleague.adobe.com/docs/experience-manager-64/developing/components/json-exporter.html?lang=en.infinity.json - https://one-inside.com/aem-headless-cms/#Content_APIspageinfo.json - https://github.com/AdobeDocs/experience-manager-65.en/blob/main/help/sites-developing/pageinfo.md

Views

107

Like

1

Replies

0
Re: Apache Sling Dynamic Include, Best way to Install Bundle into AEM - Adobe Experience Manager 16-05-2022
The best way to install the dynamic sling include bundle is to embed the bundle into your. I have already replied to your last post, but here's instructions on how to do it again:You can do this easily (after building and deploying code into your AEM local, you should be able to find the jar file existing under /apps/my-site/install:1. Include the SDI as a dependency in the ui.apps pom.xml org.apache.sling org.apache.sling.dynamic-include2. Embed the SDI as a package for deployment in ui.apps po...

Views

78

Like

1

Replies

0
Re: How to package (SDI) JAR file into my AEM project? - Adobe Experience Manager 16-05-2022
You can do this easily (after building and deploying code into your AEM local, you should be able to find the jar file existing under /apps/my-site/install:1. Include the SDI as a dependency in the ui.apps pom.xml org.apache.sling org.apache.sling.dynamic-include2. Embed the SDI as a package for deployment in ui.apps pom.xml org.apache.sling org.apache.sling.dynamic-include /apps/my-site/install3. Include the SDI as a dependency in the parent pom.xml org.apache.sling org.apache.sling.dynamic-in...

Views

92

Likes

2

Replies

0
Re: What is shy? - Adobe Experience Manager 06-05-2022
These search results look domain specific. Can you query your codebase to find shy?

Views

76

Likes

2

Replies

1
Re: Ability to map misspellings to other words - Adobe Experience Manager 03-05-2022
As per the W3 spec, you can use the spellcheck attribute on HTML input fields (such as and ) to toggle browser's built-in spell checker on or off. It has the following values:spellcheck="true" or spellcheck — enables spell checker;<input type="text" spellcheck="true" /> <textarea spellcheck="true">

Views

90

Likes

2

Replies

0
Re: how does aem prevents sql injection? - Adobe Experience Manager 27-04-2022
You should be fine, using JCR_SQL2 is read only which means that you can only use the "SELECT" keyword.

Views

192

Like

1

Replies

0
Re: How to handle content change in one language copy and avoid changes in other language copies - Adobe Experience Manager 21-04-2022
You can make language copy masters like below. /content |- we.retail |- en <---- language master (rollout of this page will target en_GB, en_IE, de, fr) |- en_GB |- en_IE |- de <---- language copy master (rollout of this page will target de_dr, de_ds) |- de_dr |- de_ds |- fr <---- language copy master (rollout of this page will target fr_zz, fr_fr) |- fr_zz |- fr_fr

Views

136

Likes

2

Replies

1