Re: [Wicket-user] Resuable Panels and Model nesting

2007-05-01 Thread Igor Vaynberg
basically what you have to understand is that compound models are shortcuts, and what you are using them for is a kind of abuse. that said here are some hints on how to do what you want you do class person { private Address address; } class address { private string street; } form f=new form(ne

[Wicket-user] Resuable Panels and Model nesting

2007-05-01 Thread John RDF
I am trying to create Panels that represent each of my domain objects i.e. Address, Name, Referee (Contains Name and Address) etc.. I then have a CompoundPropertyModel over a value object which represents the entire form. In this I want to map its properties (and sub properties etc).. I am having