Hello dear list, I have little issue here, I have a collection that I fill with values using action links, its empty in begging and I'm adding objects afterwards...
@Persist private List l = new ArrayList(); onActionFromAdd(Object o){ l.add(o); } and with help of zone I redisplay loop... Now, after 3-4 object loop start to shuffle objects inside it... so insted object 1 object 2 object 3 object 4 I get: object 3 object 1 object 2 object 4 and so on, it shuffle elements with every new addition, I tried to use the Grid but same thing there... Now is there a way to stop this behavior, because every one expects that position of thing they enter stay same, and not to shuffle on every addition... And if anyone have other suggestion how to loop try collection and preserve initial order of thing that would be very helpful. Thanks in advance Bojan -- View this message in context: http://tapestry.1045711.n5.nabble.com/T5-1-Loop-and-position-of-elements-tp2644473p2644473.html Sent from the Tapestry - User mailing list archive at Nabble.com. --------------------------------------------------------------------- To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org For additional commands, e-mail: users-h...@tapestry.apache.org