Re: [Wicket-user] form silently failing to load data when template and pojo are different

2007-05-31 Thread Jean-Baptiste Quenot
* Florian Hehlen: I have just found that if a form contains an input type=text/ and the corresponding pojo contains myForm.add(new TextAre(...)) then wicket fails to load data into the form but it will correctly read the data onSubmit. is this a known bug it sure took me

Re: [Wicket-user] form silently failing to load data when template and pojo are different

2007-05-24 Thread RĂ¼diger Schulz
Hello Florian, could you provide a quickstart showing this problem? What version of Wicket are you using? With these information, the developers might find and fix the bug. .rue 2007/5/23, Florian Hehlen [EMAIL PROTECTED]: hi, I have just found that if a form contains an input

Re: [Wicket-user] form silently failing to load data when template and pojo are different

2007-05-24 Thread Matej Knopp
This is not a bug. You need to add TextField to form if you want to use input type=text/, not TextArea. TextArea is for the textarea tag. -Matej On 5/23/07, Florian Hehlen [EMAIL PROTECTED] wrote: hi, I have just found that if a form contains an input type=text/ and the corresponding pojo

Re: [Wicket-user] form silently failing to load data when template and pojo are different

2007-05-24 Thread Johan Compagner
dont we have a check for this in onComponetTag? On 5/24/07, Matej Knopp [EMAIL PROTECTED] wrote: This is not a bug. You need to add TextField to form if you want to use input type=text/, not TextArea. TextArea is for the textarea tag. -Matej On 5/23/07, Florian Hehlen [EMAIL PROTECTED]

[Wicket-user] form silently failing to load data when template and pojo are different

2007-05-23 Thread Florian Hehlen
hi, I have just found that if a form contains an input type=text/ and the corresponding pojo contains myForm.add(new TextAre(...)) then wicket fails to load data into the form but it will correctly read the data onSubmit. is this a known bug it sure took me a long time to resolve it.