On 3/31/07, Kurt R. Hoehn <[EMAIL PROTECTED]> wrote:

    Wicket 2.0-SNAPSHOT
    Wicket-Spring 2.0-SNAPSHOT


wicket 2.0 has been discontinued for various reasons. you might want to
switch your project to the 1.x branch.


        new DropDownChoice<Profile>(form, "profile",
profileManager.getProfiles(getProfile()),


thats all you need - ie dont specify the model. that way ddc will use the
compound property model you have and put its selection into the "profile"
property for you.

also notice that profilemanager.getprofiles(getprofile()) should be new
LoadableDetachableModel() { load() { return profilemanager.getprofiles...

-igor
-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user

Reply via email to