I have a list of "AbstractShipment" objects, and each object in the
row has a Set of LineItem objects in them. Here is how I have my JSP
set up:
 
<display:table name="ships" class="Mars" id="shipment" pagesize="20"
requestURI="aPath" export="true" >
<display:setProperty name="paging.banner.include_first_last" value="true" /> 
<display:column... /> 
 
<display:column title="Line Items"> 
<display:table name="<%="((AbstractShipment)ships.item[" +
(shipment_rowNum.intValue() -1)+ "]).lineItems"%>" id="child"
class="simple sublist">
<display:column property="product.name" /> 
<display:column property="comments" /> 
</display:table> 
</display:column> 
 
Can anyone see why this is not working?  Does anyone have a working
example besides the official one? Thanks.


-------------------------------------------------------
This SF.Net email is sponsored by: InterSystems CACHE
FREE OODBMS DOWNLOAD - A multidimensional database that combines
robust object and relational technologies, making it a perfect match
for Java, C++,COM, XML, ODBC and JDBC. www.intersystems.com/match8
_______________________________________________
displaytag-devel mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/displaytag-devel

Reply via email to