Re: [T5.1.0.5] Loop inside grid

2010-09-07 Thread Halil Karakose
I have found a solution to this issue, but in an inpractical way: 1. I created the attached class and transformed hashmap values into SillyObject values: public List getSillyObjectList() { ArrayList list = new ArrayList(); List> mapList = getHashMap(); for (HashMap ma

Re: [T5.1.0.5] Loop inside grid

2010-09-06 Thread Halil Karakose
I see that, I should use the grid component as follows: List list = CollectionFactory.newList(MyHashMap.values()); > searchResults; On Fri, Sep 3, 2010 at 9:02 PM, based2 wrote: > > > http://stackoverflow.com/questions/2524045/tapestry5-display-grid-component-using-a-hashmap > > > == http://w

Re: [T5.1.0.5] Loop inside grid

2010-09-03 Thread based2
http://stackoverflow.com/questions/2524045/tapestry5-display-grid-component-using-a-hashmap == http://wiki.apache.org/tapestry/Tapestry5HowTos == http://wiki.apache.org/tapestry/Tapestry5OpensourceApps == http://wiki.apache.org/tapestry/Tapestry5ModuleRegistry -- View this message in context:

[T5.1.0.5] Loop inside grid

2010-09-03 Thread Halil Karakose
Hi all, Does it make sense to use a loop to generate t:parameter components inside a grid? xxx Actually my real problem is to display a HashMap inside a grid. *What if my row object is a hashmap, how could I display the values in a grid?