Re: PasswordTextField no longer supports cookies in beta3

2007-09-04 Thread Jan Kriesten
hi, > I would appreciate that there would be a way to use some similar method in > org.apache.wicket.authentication.pages.SignInPage as it now fails with the > following: there was a api-change in passwordtextfield. you could either override supportsPersistence() to return true or remove the set

Re: PasswordTextField no longer supports cookies in beta3

2007-09-04 Thread Igor Vaynberg
this has already been fixed in trunk i believe -igor On 9/4/07, Marko Taipale <[EMAIL PROTECTED]> wrote: > > > I would appreciate that there would be a way to use some similar method in > org.apache.wicket.authentication.pages.SignInPage as it now fails with the > following: > > java.lang.Unsupp

Re: PasswordTextField no longer supports cookies in beta3

2007-09-04 Thread Marko Taipale
I would appreciate that there would be a way to use some similar method in org.apache.wicket.authentication.pages.SignInPage as it now fails with the following: java.lang.UnsupportedOperationException: FormComponent class org.apache.wicket.markup.html.form.PasswordTextField does not support cooki

Re: PasswordTextField no longer supports cookies in beta3

2007-08-29 Thread Erik van Oosten
In a reaction to myself: I can now see why the change was valid: it is easy to allow persistence again by overloading method supportsPersistence(). Giving false is the safest default value for PasswordTextField. It should be added to the migration list though (I'll do that in a sec). Regards