We are building our menu system and a couple of the menu actions require a url in the following format:
with(milonic=new menuname("Reports")){
style=menuStyle;
aI("text=Role Report;url=/actions/reports/viewReport.do?report=Role&userId=002;");
}
We are getting a problem in that we get what seems to be a parse error because of the '&.' I can resolve the parse error by replacing the '&' with the '&'; however, the url that user has access to is as follows:
with(milonic=new menuname("Reports")){
style=menuStyle;
aI("text=Role Report;url=/actions/reports/viewReport.do?report=Role&userId=002;");
}
The url in the HTML page
=/actions/reports/viewReport.do?report=Role&
It ignores everything after the &.
I can post a more detailed example if required, but I thought I would check to see if there is a simple fix for this.
Thanks