Re: [Wicket-user] (Not a) Bug in getting Model (1.2-snapshot)

2006-10-31 Thread Igor Vaynberg
On 10/30/06, Erik van Oosten [EMAIL PROTECTED] wrote: If did see something else, if you look at Component#initModel there is afor loop that iterates up to the root of the component hierarchy. In theloop body Component#getModel is called. Note however that getModel will potentially recursively call

Re: [Wicket-user] (Not a) Bug in getting Model (1.2-snapshot)

2006-10-31 Thread Erik van Oosten
I understand. Looks like a solid answer to me. Erik. Igor Vaynberg schreef: On 10/30/06, *Erik van Oosten* [EMAIL PROTECTED] mailto:[EMAIL PROTECTED] wrote: If did see something else, if you look at Component#initModel there is a for loop that iterates up to the root of

Re: [Wicket-user] (Not a) Bug in getting Model (1.2-snapshot)

2006-10-30 Thread Erik van Oosten
Thanks Igor, Replacing ListView with PropertyListView did the trick. I missed the obvious fact that the list item's model should also be a CompoundPropertyModel. I tried to reproduce the parent-structure problem. But I can't, so I must have seen something else there. Sorry for that. If did