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

jayv25585659
jayv25585659
Online

Badges

Badges
33

Accepted Solutions

Accepted Solutions
0

Likes Received

Likes Received
71

Posts

Posts
187

Discussions

Discussions
46

Questions

Questions
141

Ideas

Ideas
0

Blog Posts

Blog Posts
0
Top badges earned by jayv25585659
Customize the badges you want to showcase on your profile
Re: Java: How do I check if a node property exists? - Adobe Experience Manager 17-04-2018
dummy moment on my part. sorry and thank you!

Views

2.0K

Likes

0

Replies

0
Java: How do I check if a node property exists? - Adobe Experience Manager 16-04-2018
I just want to find out if a node property exists.I was looking at the API reference guide- Node (Content Repository for Java Technology API Version 2.0)- Property (Content Repository for Java Technology API Version 2.0) and nothing there stands out.Thanks

Views

3.2K

Likes

0

Replies

2
how to implement this? - Adobe Experience Manager 12-04-2018
I want to create a URL like this.www.myhost.com/my-page/john.smithmy-page is an AEM page while john.smith is a parameter to the page. I guess it's likewww.myhost.com/my-page?name=john.smithbut in URL that looks nicer. Is this something AEM can do (like config changes) or perhaps this is an Apache rewrite rules? Perhaps combination of both?Sample please?Thanks!

Views

350

Likes

0

Replies

0
Re: a tag disappearing in rendered HTML (using HTL in href property) - Adobe Experience Manager 28-03-2018
Please read my edit. Thanks!

Views

1.1K

Likes

0

Replies

0
a tag disappearing in rendered HTML (using HTL in href property) - Adobe Experience Manager 26-03-2018
so I have this piece of HTLView all fishes|${properties.targetURL}When I view the page (view as published) in my local AEM, this is the rendered HTMLView all fishes|/content/myhost/en/fishes.htmlas can be seen, the a tag has disappeared.I tried with/without context=uri and I get the same issue.Any ideas what I could be doing wrong?ThankseditI also tried the code below and the a tag got stripped out as well. I have no issues when I use the full URL.div class="col-lg-6">View all fishes

Views

1.9K

Likes

0

Replies

3
replication(ReplicationActionType.DELETE) doesn't work - Adobe Experience Manager 26-03-2018
So I'm trying to import some content from an Excel spreadsheet and save this to AEM.After saving it to author, the data gets replicated to the publisher.As part of the pre-import processes, I am deleting the destination folder and then recreate it.The issue is that while the destination folder gets deleted in author, it doesn't get deleted in publisher.Any ideas what I could be doing wrong? Thanks @Override public void execute(WorkItem workItem, WorkflowSession workflowSession, MetaDataMap metaD...

Views

720

Likes

0

Replies

1
replicator.replicate function: does it delete and recreate the node? - Adobe Experience Manager 25-03-2018
So I have this codereplicator.replicate(jcrSession, activateType, path);and it replicates contents/node (primaryType = cq:Page) from author to publisher.My question is in relation to an existing node:Does this function deletes the existing publisher node and recreates it? Or does it just updates the existing node?I've looked at the reference manual and there's not details there on what's happening.Thanks!

Views

597

Like

1

Replies

2
HandlebarsJS not working properly under AEM (a tag disappearing) - Adobe Experience Manager 19-03-2018
So I have a similar code in my HTL (please click link for a non-AEM test page) {{text}} var source = document.getElementById("base").innerHTML; var template = Handlebars.compile(source); var context = {text: "My New Post", link: "https://www.google.com"}; var html = template(context); console.log(html);My issue is that under AEM, the a tag disappears. If I change the href property to{{text}}it works fine.I've tried using the built-in HandlebarsJS inside AEM (/etc/clientlibs/granite/handlebars) via clientlibs and the external HandlebarsJS (via CDN) and they are not working.If you try the test link (see 1st line), handlebars is working properly outside of AEM. Any ideas? Thanks

Views

1.0K

Likes

0

Replies

1
AEM 6.x: How to pass an HTL variable to clientlib/JS? - Adobe Experience Manager 18-03-2018
So I have the following lines which loads my javascript. I have an HTL variable/property (example: ${properties.myCustomProperty}) that I want to pass to myCustomJS.Any ideas how it can be done?I've looked around the net but didn't find anything useful.Thank you.

Views

1.5K

Likes

0

Replies

2