Search found 5 matches

by schnocky
Wed Dec 01, 2004 10:16 pm
Forum: Help & Support for DHTML Menu Version 5+
Topic: JSTL tag inside of aI function
Replies: 2
Views: 2582

Did you try

<c:out value='aI("text=Edit Preferences; url=blahController.do?id=${ACEGI_SECURITY_AUTHENTICATION.principal.applicationUser.applicationUserId};")'/>

This should be equivalent to what you want and the syntax should be compatible with the menu syntax.

steve
by schnocky
Tue Aug 31, 2004 7:45 pm
Forum: Help & Support for DHTML Menu Version 5+
Topic: Problem with '&' in a URL string
Replies: 6
Views: 5368

OK, it took one more iteration to solve my problem. It seems that the issue was the JSP engine replacing '&' with "&" that was the root cause of the problem. The solution was to modify the JSP page and have the '&' explicitly on the page while using the JSP engine to generate the rest of the string ...
by schnocky
Tue Aug 31, 2004 6:11 pm
Forum: Help & Support for DHTML Menu Version 5+
Topic: Problem with '&' in a URL string
Replies: 6
Views: 5368

Thanks for the suggestions, I finally found a combination that will work.

Here are my observations.

I did use the backquote character '`' to surround the URL. This works as long as you have a fully qualified URL. When I added it to a relative URL, the menus did not show up.

I also tried the ...
by schnocky
Mon Aug 30, 2004 8:13 pm
Forum: Help & Support for DHTML Menu Version 5+
Topic: Problem with '&' in a URL string
Replies: 6
Views: 5368

OK, sounds good. Right now I only have relative URLs, will they work?

I have an output of

aI("text= Other;url='/bar/reports/startpage.jsp?p1=2&p2=404;");

and the menus don't show up.

steve
by schnocky
Mon Aug 30, 2004 7:49 pm
Forum: Help & Support for DHTML Menu Version 5+
Topic: Problem with '&' in a URL string
Replies: 6
Views: 5368

Problem with '&' in a URL string

I have read through another lengthy dialog on this issue (Can't get link with '&' to work), but the solution doesn't seem to work for me.

I am dynamically generating content for the menu using data from the database (JavaServer Pages and JSTL). I have a JSP that I create which contains several ...