nevermind...
this works: <s:iterator value="%{memberDetails}">
On Thu, May 21, 2009 at 12:28 PM, Bhaarat Sharma <[email protected]>wrote:
> Hi
> I have two nested struts iterator tags.
>
> The value for second iterator tag is property from the first iterator.
>
> Something like this
>
> <s:iterator value="stats">
> <th colspan="4">
> HOH Name <s:property value="hohName"/> | HOH DOB <s:property
> value="DOB"/> | Project <s:property value="developmentName"/>
> </th>
> <tr>
> <th class="cols">Member Name</th>
> <th class="cols">Member DOB</th>
> <th class="cols">Failed Verification Description</th>
> </tr>
> <s:iterator value="<s:property: value="memberDetails"/>"/>
> <!-- this is the second tag where 'memberDetails' is property from first
> iterator tag. ofcourse this syntax is not correct-->
> .....
> .....
> <s:/iterator>
> </s:iterator>
>
> I would like to know what is the current syntax to achieve something like
> this?
>
>