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: Unexpected variation in component's behaviour when us... - Adobe Experience Manager 04-03-2020
@SiddharthDixit ,Wrong positioning, sizing, colour seems like a CSS issue. When utilising editable templates, I assume that you are using the responsive grid component. Unlike the parsys (/libs/foundation/...) which add a parent wrapper around each component with a few basic StyleClasses, the responsive grid components add many additional classes. The responsive grid will add a parent wrapper around each of your components, on top of that, the AEM-GRID CSS classes. The AEM-GRID classes enable te...

Views

977

Likes

0

Replies

1
Re: Register Replication Agent with a Script (automation) - Adobe Experience Manager 04-03-2020
@donaldc32590774,Yes most definitely. Within your developer tools, you can watch which API is being used when AEM triggers an action. With this information, you can copy the called API, adjust to your own hearts contempt, and then use it for your own purpose.Adobe has an easy tutorial on how you can extract APIs being used on AEM - https://helpx.adobe.com/experience-manager/6-3/sites/administering/using/curl.html#BuildingacURLReadyAEMCommandHope this helps.

Views

856

Likes

0

Replies

0
Re: How to use the i18n - Adobe Experience Manager 04-03-2020
@Tekno I recommend you to first get the out of the box Internationalization (i18n) feature in your FRESH local AEM working. Then after you can try to integrate the feature into your project.Steps I recommend:1. Completely destroy your local author instance for learning purposes.2. Start a new AEM local author instance with samples.3. Build a new project using the latest AEM Project Archetype - https://github.com/adobe/aem-project-archetype4. Upload generated project from AEM Project Archetype in...

Views

1.7K

Likes

0

Replies

0
Re: How to use the i18n - Adobe Experience Manager 03-03-2020
@Tekno,You need to add the correct dictionary keys in the AEM console here: http://{SERVER}:{PORT}/libs/cq/i18n/translator.html

Views

1.7K

Likes

0

Replies

2
Re: Relative Path VS Absolute Path in SEO - Adobe Experience Manager 03-03-2020
@parklaneandmayfair,While building AEM content pages and components, as a developer, it's best practice to use relative paths (for local AEM JCR paths) than absolute paths for benefits listed in this blog: https://moz.com/blog/relative-vs-absolute-urls-whiteboard-fridayUse: /notting-hill-escorts.htmlDon't use unless needed (external paths): https://www.adobe.com/notting-hill-escorts.html

Views

2.2K

Like

1

Replies

1
What does the rendered code look like after you apply thi... - Adobe Experience Manager 02-03-2020
What does the rendered code look like after you apply this?Try this:// show div when in edit mode, else hide.// I've added the section class && changed the conditional <<<>>>

Views

3.7K

Likes

0

Replies

1
Re: Sling Model mapping not working with SPA react - Adobe Experience Manager 02-03-2020
@ashish_mishra1,Instead of using @inject in various places, it's recommended to get used to Apache’s Sling Model injector specific annotations! https://sourcedcode.com/aem-sling-model-injectors-annotations-reference-guideHappy Coding!

Views

2.0K

Like

1

Replies

1
Re: Render AEM Site Actions Dynamically using render cond... - Adobe Experience Manager 02-03-2020
@jithinkumar,In the way of serverside render, you can:1. Create a component with a one to one relationship with a Sling Model.2. The Sling Model will expose a property of "isChildPage", and is evaluated within the logic of the Sling Model. @Model(adaptables=Resource.class) public class MyModel { @Getter private boolean isChildPage = false; @PostConstruct protected void initComponent() { // pseudo-code // if currentPage.path equals to CONST.CHILD_PAGE_PATTERN // isChildPage = true; } } 3. Simply ...

Views

1.6K

Likes

0

Replies

1
Re: AEM | SPA React Component with a parsys - Adobe Experience Manager 02-03-2020
@rajashekard,I am assuming that you are building a headless API with a page of /content/my-project/api/*. The Responsive Grid (from AEM Core WCM Components) gives you out of the box functionality that exports the page details and the list of components (configured on the page) when you visit the page with ".model.json". Right, not to mention about the Adobe Core WCM Components, Page Component. When you create a page using a template that points to the Page Component, core component, then the ".m...

Views

1.0K

Likes

0

Replies

0
Re: AEM - html page source code is XML or json ? - Adobe Experience Manager 02-03-2020
@arunk85184451,The new AEM Core WCM Components are built with Sling Models, which Sling Models includes a single exporter, using the Jackson framework. Jackson allows you to expose and format Sling Model Object's properties in JSON format. There's another way to obtain JSON from any resource and AEM. You can replace ".html" with "tidy.infinity.json"; which the request triggers the default Sling GET servlet in JSON mode. read more here: https://sling.apache.org/documentation/bundles/rendering-con...

Views

2.6K

Likes

0

Replies

1