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

leeasling
leeasling
Offline

Badges

Badges
27

Accepted Solutions

Accepted Solutions
75

Likes Received

Likes Received
79

Posts

Posts
292

Discussions

Discussions
49

Questions

Questions
243

Ideas

Ideas
0

Blog Posts

Blog Posts
0
Top badges earned by leeasling
Customize the badges you want to showcase on your profile
Re: AEM Query for property with no value - Adobe Experience Manager 09-06-2017
You can do the following and remove the property.valueproperty.operator=notYou may also need to add @jcr:content/ to the property name, so the full thing would look like this:path=/content/myproject type=cq:Page property=@jcr:content/sectionEmail property.operation=not

Views

5.0K

Likes

2

Replies

0
Re: Adobe Granite HTML Library Manager - Long term client side cache key - Adobe Experience Manager 08-06-2017
It's part of the Apache Configuration. Documentation is here Versioned ClientLibs Apache ConfigurationTo configure Apache to send the right header to set a long TTL:SetEnvIf Request_URI "(\.min)?\.[a-f0-9]+\.js" long_expires=true SetEnvIf Request_URI "(\.min)?\.[a-f0-9]+\.css" long_expires=true Header set Cache-Control max-age=2592000 env=long_expires

Views

1.2K

Like

1

Replies

0
Re: Tag ID xtype multifield issue in AEM 6.2 - Adobe Experience Manager 07-06-2017
Try changing the store from JSON to NODE and make sure your property name for tags is ./cq:tagsAdd this to your dialog fieldacs-commons-nested="NODE_STORE"

Views

943

Like

1

Replies

0
Re: minifying JS and CSS in 6.2 causing errors - Adobe Experience Manager 23-05-2017
the most common cause of this i've found is that you're using a reserved word as a variable name or function name. If you check the error log, you'll see the first time it errors it'll give you a pointer close to the word it failed on.

Views

3.0K

Likes

2

Replies

0
Re: AEM Post Servlet Ajax call fails on first time call when page opened in new browser. - Adobe Experience Manager 23-05-2017
You need to update the users information in the browser. Try the below. It clears any current information stored in the users profile and reloads it after successful login.$(document).ready(function() { if(userName && password) { if (CQ_Analytics) { if (CQ_Analytics.ProfileDataMgr) { //Clear the current profile CQ_Analytics.ProfileDataMgr.clear(); } } $.ajax({ type:'POST', url : path[0]+"/j_security_check", data: { j_username: userName, j_password: password, j_validate:"true" }, success: functio...

Views

1.6K

Likes

0

Replies

0
Re: Trouble with HTL includes - Adobe Experience Manager 18-05-2017
Remove the "data-sly-unwrap" - you're unwrapping the element that's needed for editing.

Views

894

Likes

0

Replies

0
Re: Sightly component with drag and drop image (get the file reference) - Adobe Experience Manager 05-05-2017
public class ImageHelper extends WCMUsePojo { public String getImageSrc() { Image image = new Image(this.getResource(), "image"); if (image != null && image.hasContent()) { image.setSelector("img"); return image.getSrc(); } return null; } public String getBackgroundImageSrc() { return "background-image:url(" + this.getImageSrc() + ")"; } } Some stuff in here.

Views

1.0K

Likes

0

Replies

0
Re: String[] type for Multivalued Properties - AEM - Adobe Experience Manager 19-04-2017
Easiest way to handle it is as follows:String[] value = properties.get("propertyName", new String[] {});This will create a string array regardless of 1 or multiple string values, regardless of String or String[] type.

Views

8.2K

Like

1

Replies

6
Re: Not able to login in AEM Publish instance - Adobe Experience Manager 03-03-2017
Check the referrer filter configuration and make sure the domain is allowed.

Views

8.8K

Likes

0

Replies

0
Re: Best approach to show up pages at different levels in component : AEM 6.2 - Adobe Experience Manager 20-02-2017
You can use the second piece of code i posted for the multifield of path fields, this will allow you to select multiple pages at really any level, but you can restrict it by path too.

Views

1.0K

Likes

0

Replies

0