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]

Reply via email to