Hi All, I have a List collection (paymntTrnsctns) which contains an adminReceipts objects. One of the properties of adminReceipts is a list. So I display the normal string properties of the object, such as receiptNumber and transactionDate, but can't then get the list adminPaymentDetails within the adminReceipts object.
I am trying to execute the following code: <logic:iterate id="adminReceipts" name="paymntTrnsctns"> <div id="ExtractResults" style="width: 760px; background-color: #FFFFFF; border: 1px; padding: 1px; margin: 0px auto";> <table width="100%" border="1" cellpadding="0" cellspacing="0"> <tr class="extractResultsTRHeading" bgcolor="#FFFFFF"> <td class="extractResultsTD"> <bean:message key="prompt.label.receiptNumber"/> </td> <td class="extractResultsTD"> <bean:message key="prompt.label.dateTime"/> </td> </tr> <tr class="extractResultsTRHeading" bgcolor="<jsp:getProperty name="colour" property="next"/>"> <td class="extractResultsTD"> <bean:write name="adminReceipts" property="receiptNumber"/> </td> <td class="extractResultsTD"> <bean:write name="adminReceipts" property="transactionDate"/> </td> </tr> </table> </div> <logic:iterate id="adminPaymentDetails" name="adminReceipts"> </logic:iterate> </logic:iterate> Can anyone please tell me what I'm doing wrong. Thanks, Jackie. --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]