Hy
Given the two pieces of codes can you explain me how can i get same output?
A:
<s:iterator value="myList">
<s:property /><br>
</s:iterator>
This produces correctly the following
John<br>
Steve<br>
B:
<s:iterator value="myList" >
<s:property value="#this"/><br>
</s:iterator>
And this produces
[John, [EMAIL PROTECTED],
[EMAIL PROTECTED]<br>
[Steve, [EMAIL PROTECTED],
[EMAIL PROTECTED]<br>
given that myList is an arraylist containing Strings....
Thanx
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]