Hi,

I have a nested object hierarch as follows:

public Class Discrepancy {
        String[] discrepancyIds;
}

public Class CashException {
        Collection discrepancies; // collection of Discrepancy objects
}

In my JSP, I tried the following:

<nested:iterate property="discrepancies" >
        <nested:iterate id="discrepancyId" property="discrepancyIds" >
                <nested:hidden property="discrepancyId" /> <!-- ??? -->
        </nested:iterate>
</nested:iterate>

How would I generate hidden tags for all of the nested Id fields?

I also tried:

Thanks in advance,
-Ben


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

Reply via email to