RE: getConverter() in TextArea not being called

2008-03-13 Thread Michael Mehrle
This was very helpful - thank you again, Igor! -Original Message- From: Igor Vaynberg [mailto:[EMAIL PROTECTED] Sent: Thursday, March 13, 2008 12:55 PM To: users@wicket.apache.org Subject: Re: getConverter() in TextArea not being called textarea.settype(mytype.class); or new textarea

Re: getConverter() in TextArea not being called

2008-03-13 Thread Igor Vaynberg
ECTED] > Sent: Thursday, March 13, 2008 12:12 PM > To: users@wicket.apache.org > Subject: Re: getConverter() in TextArea not being called > > you have to set the type either via constructor arg or a call to settype > > -igor > > > On Thu, Mar 13, 2008 at 12:08 PM,

RE: getConverter() in TextArea not being called

2008-03-13 Thread Michael Mehrle
PROTECTED] Sent: Thursday, March 13, 2008 12:12 PM To: users@wicket.apache.org Subject: Re: getConverter() in TextArea not being called you have to set the type either via constructor arg or a call to settype -igor On Thu, Mar 13, 2008 at 12:08 PM, Michael Mehrle <[EMAIL PROTECTED]> wro

Re: getConverter() in TextArea not being called

2008-03-13 Thread Igor Vaynberg
you have to set the type either via constructor arg or a call to settype -igor On Thu, Mar 13, 2008 at 12:08 PM, Michael Mehrle <[EMAIL PROTECTED]> wrote: > I've got a custom TextArea which overrides getConverter(), however for > some reason that method never gets called. getConverter() returns

getConverter() in TextArea not being called

2008-03-13 Thread Michael Mehrle
I've got a custom TextArea which overrides getConverter(), however for some reason that method never gets called. getConverter() returns an implementation of IConverter - it all looks pretty basic. Is there anything special I have to do for getConverter() to be called? By the way I added the @Over