Bob,
I'm also using JSTL without any problems. But I don't there is a
'paramScope ' [1], do you mean 'PageScope'? You can iterate the
'parameterMap' like:
<c:forEach var="parameter" items="${renderRequest.parameterMap}">
<tr>
<td>${parameter.key}</td>
<td><c:forEach var="valueEntry" items="${parameter.value}">${valueEntry}
</c:forEach></td>
</tr>
</c:forEach>
I see no need to use <c:set> with actionUrl because there is a 'var'
attribute on the actionUrl and renderURL, like this example:
<portlet:defineObjects />
<portlet:renderURL portletMode="view" secure="false"
windowState="maximized" var="maxViewUrl" />
Brgds, Brian.
[1] http://www.phptr.com/articles/article.asp?p=30946&seqNum=7&rl=1
Melchior, Joris wrote:
Hi Bob,
The example you give is actually of the JSP EL (expression language).
I've written some Portlets that use JSTL (and other tag libraries)
without problems. Have you included the jstl.jar and standard.jar files
in your war file?
Regards, Joris.
-----Original Message-----
From: Bob Song [mailto:[EMAIL PROTECTED]
Sent: Thursday, April 19, 2007 7:34 AM
To: Jetspeed Users List
Subject: JSTL issues
Hi, all
I found that I can't use JSTL tags in JSP files to retrieve the
parameters .
For example, when a render parameter named 'username' are set in
doRender method, then dipatched to a jsp file,
I can't fetch it from ${paramScope.username}, but can do it only from
request.getParameter('username')
And I also can't wrap <portlet:actionURL> by <c:set> tag.
I think it's not convenience. How to solve it?
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]