1. Add the EL tag library descriptor to your web.xml.

<taglib>
    <taglib-uri>/tags/struts-html-el</taglib-uri>
    <taglib-location>/WEB-INF/struts-html-el.tld</taglib-location>
</taglib>

2. Include the required jar files in WEB-INF/lib:
struts-el.jar, standard.jar

3. Import the tag library in your jsp and use the el tags:

<%@ taglib uri="/tags/struts-html-el" prefix="html-el" %>
....
<td><html-el:text property="myFundingIndexed[${outerLoop.index * size +
innerLoop.index}]"/></td>
...

Hope this helps,
Pushkala. 

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to