Re: Tomahawk: dataTable with detailToggle problem

2007-06-29 Thread Vladimir Isakovich
I just slept over this problem, and this is what I've done to resolve it: I initiated collections of orders in all customers with empty collections: list = (List)super.getList("from xyz.persist.domain.Customer"); for(int i=0; i< list.size(); i++)//initialize collections

Tomahawk: dataTable with detailToggle problem

2007-06-28 Thread vlad10
I'm trying to use 'lazy' model initialization (with hibernate on the back) for the t:dataTable with detailToggle, so that when I click 'Show Orders', the actionListener would call methot which retrieves all necessary records (I'm following the example on http://www.irian.at/myfaces/home.jsf):