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

Bruce_Lefebvre
Bruce_Lefebvre
Offline

Badges

Badges
17

Accepted Solutions

Accepted Solutions
28

Likes Received

Likes Received
30

Posts

Posts
63

Discussions

Discussions
6

Questions

Questions
57

Ideas

Ideas
0

Blog Posts

Blog Posts
0
Top badges earned by Bruce_Lefebvre
Customize the badges you want to showcase on your profile
Re: Mobile Apps - Component referred using reference component - JSON not set in scope - Adobe Experience Manager Mobile 29-09-2016
Thanks for the details. I'm working on reproducing it locally and will get back to you with my recommendation.

Views

812

Likes

0

Replies

0
Re: Mobile Apps - Component referred using reference component - JSON not set in scope - Adobe Experience Manager Mobile 29-09-2016
Hi Sandeep,Can you clarify what you mean by this? Providing a piece of sample code to reproduce the issue would be very helpful.

Views

812

Likes

0

Replies

0
Re: Whats is Archetype Command for Mobile App? - Adobe Experience Manager Mobile 26-04-2016
Hello,We do not provide a maven archetype specifically for bootstrapping mobile app projects, but do have a 'starter kit' project on GitHub that you can use for this purpose: GitHub - Adobe-Marketing-Cloud-Apps/aem-phonegap-starter-kit: Bootstrap your AEM Apps projectBruce

Views

930

Likes

0

Replies

0
Re: Page Specific Styles - Adobe Experience Manager 15-10-2015
The method you've used in other systems will work fine in AEM, too. Simply expose a property via your template's page properties cq:dialog (`./pageClass` for example), and output the value of that property into the class attribute of your template's HTML element. In JSP:">or Sightly:You can now define your page specific styles as follows (for example, to style paragraphs when pageClass is set to 'homePage'):.homePage p { margin: 0 1em; }A general discussion on the topic can be found here [0].[0]...

Views

708

Likes

0

Replies

0
Re: Modifying Page dialog in 6.1 - Adobe Experience Manager 15-10-2015
You can get rid of the unwanted inherited tabs by including the following property on the `items` node that is a parent of the tabs:sling:hideChildren="[permissions,cloudservices,thumbnail]"

Views

542

Likes

0

Replies

0
Re: How to let the dispatcher not cache certain component? - Adobe Experience Manager 15-10-2015
SSI includes are a feature of the web server, so you will need a dispatcher in front of your instance in order to use them (see answer at [0]). [0] also contains a suggestion to query WCMMode from within your JSP and use a

Views

1.4K

Like

1

Replies

0
Re: How to let the dispatcher not cache certain component? - Adobe Experience Manager 15-10-2015
Try hitting your component without the 'dynamic' selector (for example, http://localhost:4505/content/myapp/mypage/_jcr_content/rightPar/dynamicComponent.html). The contents of dynamicComponent.jsp (including 'render this') will not be included in the response when the selector matches another script.I would also suggest renaming dynamicComponent.dynamic.jsp to simply dynamic.jsp.

Views

1.3K

Likes

0

Replies

0
Re: How do I get the value of a property given an absolute path? - Adobe Experience Manager 15-10-2015
I hacked up a little example using the excellent AEM Fiddle (part of ACS AEM Tools [0]):<%@include file="/libs/foundation/global.jsp"%><% %><%@page session="false" contentType="text/html; charset=utf-8" pageEncoding="UTF-8" import="org.apache.sling.api.resource.Resource, org.apache.sling.api.resource.ValueMap"%><% // Get the text resource Resource textResource = resourceResolver.getResource("/content/userblog/2015/06/blog_post/jcr:content/par/entry"); // Get it's properties ValueMap textResource...

Views

1.8K

Like

1

Replies

0
Re: Getting the hostname using Sightly - Adobe Experience Manager 15-10-2015
Yes, it's possible. Check out the Externalizer service [0] for access to the hostname, and the Sightly Use-API [1] for exposing that value to your Sightly scripts.[0] https://docs.adobe.com/docs/en/aem/6-1/develop/platform/externalizer.html[1] http://docs.adobe.com/docs/en/aem/6-1/develop/sightly/use-api-in-java.html

Views

2.0K

Likes

0

Replies

0
Re: About ComponentGroup field - Adobe Experience Manager 15-10-2015
A componentGroup property set to '.hidden' means the component will be hidden from the side panel Components tab (touch-optimized UI) and the Sidekick (classic UI). Hidden components can be used by developers as the sling:resourceType of a template, or included directly in a component's script via cq:include (JSP) [0] or data-sly-resource (Sightly) [1].[0] https://docs.adobe.com/docs/en/cq/5-6-1/developing/components.html#[1] http://docs.adobe.com/content/docs/en/aem/6-0/develop/sightly.html#res...

Views

2.3K

Likes

0

Replies

0