Hi,
I'm using WebSphere Portal 6.1 / Spring MVC 2.5.1
I have a render url created using:
<portlet:renderURL windowState="normal" var="secondRenderUrl">
<portlet: param name="action" value="second" />
<portlet: param name="id" value="12345" />
</portlet:renderURL>
Then I use this in a link like so:
<a href="${secondRenderUrl}">second</a>
Can I add another parameter to the url using javascript?
Does anyone understand how the URLs are encoded?
I assume I would have to decode, add param and encode.
Maybe there's a better way to do it?
Any advice appreciated...
Thanks.


Reply With Quote