I have a map of ui controls passed to a JSP. Each entry in the map contains
a "label", "name", "value". The key used in the map is the "name". I
iterate through as follows:
<TABLE>
<c:forEach var="entry"
items="${requestScope[param.forName].uiControls}">
<TR>
<TD>
<bean:write name='${param.formName}'
property="uiCtrlLabel(${entry.key})"/>
</TD>
<TD>
<html:text property="uiCtrlValue(${entry.key})" size="30"
maxlength="2048"/>
</TD>
</TR>
</c:forEach>
</TABLE>
This works, however I am trying to figure out how to make it work without
using the bean:write tag. Any ideas? I've tried many options all of which
fail.
Thanks.
--
View this message in context:
http://www.nabble.com/converting-a-struts-bean-call-to-EL-JSTL-tf2300239.html#a6392405
Sent from the Struts - User mailing list archive at Nabble.com.
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]