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

Ojjis
Ojjis
Offline

Badges

Badges
20

Accepted Solutions

Accepted Solutions
95

Likes Received

Likes Received
77

Posts

Posts
198

Discussions

Discussions
2

Questions

Questions
196

Ideas

Ideas
0

Blog Posts

Blog Posts
0
Top badges earned by Ojjis
Customize the badges you want to showcase on your profile
Re: Client context isn't there + component doesn't show up when dragged and dropped - Adobe Experience Manager 15-10-2015
A great that you solved the first part.About the 2nd part, what does the error log say ?

Views

987

Likes

0

Replies

0
Re: Client context isn't there + component doesn't show up when dragged and dropped - Adobe Experience Manager 15-10-2015
Yes, there is a missing "include" or import of the necessary libraries and those js errors will surely prevent the client context from showing up. How did you go about copying the site, did you get all the clientlib configurations right? There might also be something else (js-related, maybe your own js files) that is causing those libraries to fail loading. Are there any traces in the actualy log files of the error or is those two lines in the web console the only thing you get ?Also a last ques...

Views

992

Likes

0

Replies

0
Re: Creating a Link Rewriter for Adobe Experience Manager - Adobe Experience Manager 15-10-2015
Well i didn't mean for you to change in the code. I meant that you should do that configuration in the OSGi console and then configure the ClientlibLinkRewriter there.It is though strange that it complains about that since static.1.0.0.css would be a valid sling selector for that file.But my suggestion would be to revert the code changes and then do the correct configuration in the OSGi console instead.

Views

10.1K

Likes

0

Replies

2
Re: Creating a Link Rewriter for Adobe Experience Manager - Adobe Experience Manager 15-10-2015
Did you add the correct urls for the designs in the geometrixx example.Find out where the geometrixx example you are looking at have it's design set and add that url to the config of the rewriter as shown in the example Good Luck/Johan

Views

10.1K

Likes

0

Replies

4
Re: Search screen with results - Adobe Experience Manager 15-10-2015
There's probably a huge number ways this can be achieved. Together with Scotts suggestion I'll throw some other ones in as well: You could either create you own search servlet which you post to from A and have it redirect the checked and validated values to B (guessing you want to have some validation/control over what is entered in the box and so on). This servlet would then maybe listen to a special resourceType or pathOr you could (provided that there would be small text fragments from the bo...

Views

824

Like

1

Replies

0
Re: Migration CQ 5.5 -> AEM 5.6.1: LESS compiler issue - Adobe Experience Manager 15-10-2015
Hello, I've experienced the same thing.One way of solving this is to have the separate less files include the variable file at the top like: ----------------- /* in mylessfile.less */ ------------------ @import "/etc/designs/my/site/clientlib/css/muVariables.less"; .myClass { .myVariable(none); }That will work

Views

1.0K

Likes

0

Replies

0
Re: Redirect a Form to the same page from Servlet after submission - Adobe Experience Manager 15-10-2015
Hi, there are probably a few ways of doing this. Here's two:1) response.sendRedirect(req.getHeader("referer"));This makes use of the referer header which may or may not be there, so it's not reliable all the time. 2) Have the form pass the page it's on as an variable and then use that for redirecting.This of course could be a security risk so you need to check that the url submitted from the form to your servlet actually is residing on your page Good Luck/johan

Views

3.6K

Likes

0

Replies

0
Re: Displaying friendly errors in components - Adobe Experience Manager 15-10-2015
As Scott pointed out, it's possible to handle the errors straight away when they arise on the JSP page.There are a few examples here of how you could do it: http://www.tutorialspoint.com/jsp/jsp_exception_handling.htmIf would maybe make use of the try/catch blocks so you can handle the errors nicely on the actual component jsp and you could do create some nicehtml for the catch block so that the component would look good anyway. That might include a special DIV when an error arise but it would n...

Views

789

Likes

0

Replies

0
Re: Finding path references on a CQ page - Adobe Experience Manager 15-10-2015
Link checker service (which is a rewriter implementation) in part of the rewrite pipeline. The sling re-write pipeline is rewriting the output generated by the AEM pages.To read more about rewriting pipelines take a look at this document: http://sling.apache.org/site/output-rewriting-pipelines-orgapacheslingrewriter.htmlAFAIK, this implementation traverses the content that goes out on the pages and works its magic on links /Johan

Views

1.2K

Like

1

Replies

0
Re: design_dialog - Adobe Experience Manager 15-10-2015
Hi Viren,Would it be enough if you create you own iparsys that holds the text you want, let say on the parent page. Then the child pages of this one will have the opportunity to inherit the same text as entered in the parent page. This component could then be automatically included in your template if you wish to have it on every page (do you don't forget some pages).Otherwise you could have a component where you ahve a design dialog. This design dialog could hold a value like, myText.In the des...

Views

880

Likes

0

Replies

0