Re: [Wicket-user] FormToModel Binding - Can Annotations Help

2006-02-18 Thread Johan Compagner
we do it the other way around.just do this in youre example:[Form Code] Form myform = new Form("myform", new CompoundPropertyModel(new Data())); TextField txt = new TextField("myprop"); myform.add(txt); [/Form Code] myprop id is automaticaly mapped to youre model property mypropjohanOn 2/18/06, Ay

[Wicket-user] FormToModel Binding - Can Annotations Help

2006-02-18 Thread Ayodeji Aladejebi
Hello,   Just another small suggestion as regarding future Java5 directions of Wicket.   I know Wicket generally may not be planning to use annotations but i just want to know the limitations of having stuff like this in some future Wicket version especially in the FormBindingToModel Situations.