Jason Long wrote:
<c:forEach var="quote" items="${quoteForm.quoteValues}">
<!-- no tile used --> <table>
<tr>
<td>${quote.offerPriceLightValue.sizeValue.size}</td>
</tr>
</table>
<!-- tile attempt to wrap with holder for delineation -->
<tiles:insert definition=".quote.list.item" flush="false">
<tiles:put name="quote" beanName="quote"/>
</tiles:insert>
</c:forEach>
I would like to define the following tile definition:
<definition extends=".table.holder" name=".quote"> <put name="content" value="/quote.jsp"/> </definition>
you must be leaving something out of your email, cos this tile is named .table.holder, but the jsp above is inserting a tile named ".quote.list.item".
And have quote.jsp as follows:
<table> <tr> <td>${quote.offerPriceLightValue.sizeValue.size}</td> </tr> </table>
you need to put the <tiles:importAttribute> in quote.jsp. that exposes the bean referenced by <tiles:put> in the calling jsp.
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]