EL is not the JSTL. EL can be used outside of the JSTL (assuming you are
on a recent version of the spec).
You might have better luck asking in the correct mailing list. This list
is for the development of Struts, not usage.
-Chase
whitesox12 wrote:
Is there any other way other than using JSTL. As I am trying to use struts
tags only.
Thanks
Antonio Petrelli-3 wrote:
2008/5/14 whitesox12 <[EMAIL PROTECTED]>:
Hi,
I have a List that holds only 5 JavaBean Objects. Now I need to show the
data on the JSP but don't want to use the <logic:iterate....
Is there a way to manually get the List element by index and show data
on
the page in specific area and then get the next element i.e. List.get(0)
then show the data and then List.get(1) etc. without using
logic:iterate.
You could use EL:
${myList[0].myProperty}
HTH
Antonio
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]