TextArea problems

2008-03-02 Thread [EMAIL PROTECTED]
Hi. I have a form that contains a text area. I want to fill this with content fetch from a pojo. I do this by form.add(new TextArea(xxx, new PropertyModel(myPojoInstans, content)); When running the app this screws things up. Any components added before the TextArea are displayed correctly,

Re: TextArea problems

2008-03-02 Thread Jay Hogan
Hi Jörgen, The textarea tag requires a close tag, rather than an open-close tag. Like this: form wicket:id=testTextAreaForm method=post textarea wicket:id=testTextArea rows=10 cols=30Content to be replaced by wicket/textarea /form Cheers, Jay On Sun, Mar 2, 2008 at 6:01 AM, [EMAIL

Re: TextArea problems

2008-03-02 Thread [EMAIL PROTECTED]
Thank Jay. It's always so simple :) /Jörgen Jay Hogan skrev: Hi Jörgen, The textarea tag requires a close tag, rather than an open-close tag. Like this: form wicket:id=testTextAreaForm method=post textarea wicket:id=testTextArea rows=10 cols=30Content to be replaced by