Re: [T5] Cannot persist field exception

2007-11-29 Thread Howard Lewis Ship
Don't see anything obvious, he Palette itself does not have any persistent fields. It must be some parameter of the Palette, tied to a persistent field in some way. On Nov 29, 2007 3:40 PM, Jean-Philippe Steinmetz <[EMAIL PROTECTED]> wrote: > So I've finally narrowed it down to the Palette compon

RE: [T5] Cannot persist field exception

2007-11-29 Thread Jean-Philippe Steinmetz
So I've finally narrowed it down to the Palette component the page uses. When I remove the Palette it doesn't give errors. When its on screen I get errors. This is the error I now get when I try and submit the form... java.lang.NullPointerException Stack trace * org.apache.tapestry.coreli

RE: [T5] Cannot persist field exception

2007-11-28 Thread Jean-Philippe Steinmetz
peModel) { this.acctTypeModel = acctTypeModel; } } > -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] > On Behalf Of Josh Canfield > Sent: Wednesday, November 28, 2007 10:24 AM > To: Tapestry users > Subject: Re: [T5] Cannot persist field exception > > Is that the entire page class? - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: [T5] Cannot persist field exception

2007-11-28 Thread Josh Canfield
n with no other information. Very strange > indeed. Not even a stack trace. > > > -Original Message- > > From: jeffrey ai [mailto:[EMAIL PROTECTED] > > Sent: Wednesday, November 21, 2007 2:42 PM > > To: users@tapestry.apache.org > > Subject: Re: [T5] Cannot

RE: [T5] Cannot persist field exception

2007-11-27 Thread Jean-Philippe Steinmetz
[EMAIL PROTECTED] > Sent: Wednesday, November 21, 2007 2:42 PM > To: users@tapestry.apache.org > Subject: Re: [T5] Cannot persist field exception > > > I think you are missing "t:value" in your template. > It should be : > t:validate="required"

Re: [T5] Cannot persist field exception

2007-11-21 Thread jeffrey ai
gt; : > size="30"/> > > So i'm not sure why i'd be getting this error. Does anyone have ideas? I > tried setting some default value to username in the setupRender() function > but that doesn't seem to solve the problem. > > Thanks in advance, >

RE: [T5] Cannot persist field exception

2007-11-21 Thread Jean-Philippe Steinmetz
pestry users > Subject: Re: [T5] Cannot persist field exception > > full stack trace ? > > > On Nov 21, 2007 10:17 PM, Jean-Philippe Steinmetz > <[EMAIL PROTECTED]> wrote: > > > Is there anyone that can help with this problem? Thanks > > > > >

Re: [T5] Cannot persist field exception

2007-11-21 Thread Davor Hrg
day, November 16, 2007 1:36 PM > > To: 'Tapestry users' > > Subject: [T5] Cannot persist field exception > > > > Hi All, > > > > I'm getting the following error > > > > Error persisting field Users/Create:username: > > java.lang.N

RE: [T5] Cannot persist field exception

2007-11-21 Thread Jean-Philippe Steinmetz
Is there anyone that can help with this problem? Thanks > -Original Message- > From: Jean-Philippe Steinmetz [mailto:[EMAIL PROTECTED] > Sent: Friday, November 16, 2007 1:36 PM > To: 'Tapestry users' > Subject: [T5] Cannot persist field exception > >

[T5] Cannot persist field exception

2007-11-16 Thread Jean-Philippe Steinmetz
Hi All, I'm getting the following error Error persisting field Users/Create:username: java.lang.NullPointerException In my page class I have... @Persist private String username; public String getUsername() { return username; } public void setUsername(String username) { this.username = u