Re: [Wicket-user] PasswordTextField.setResetPassword

2007-02-24 Thread Rüdiger Schulz
Johan Compagner schrieb: please make a jira issue Here it is: https://issues.apache.org/jira/browse/WICKET-322 hmm, thought I selected minor priority, but oh well. greetings, Rüdiger - Take Surveys. Earn Cash.

[Wicket-user] PasswordTextField.setResetPassword

2007-02-23 Thread Rüdiger Schulz
Hello everybody, Using Wicket 1.2.5, I have a sign-up form with a password field like this: PasswordTextField passwordField = new PasswordTextField(password); passwordField.setRequired(true); passwordField.add(StringValidator.lengthBetween(5, 32)); I observe a rather odd behavior: 1) enter 5

Re: [Wicket-user] PasswordTextField.setResetPassword

2007-02-23 Thread Johan Compagner
please make a jira issue On 2/24/07, Rüdiger Schulz [EMAIL PROTECTED] wrote: Hello everybody, Using Wicket 1.2.5, I have a sign-up form with a password field like this: PasswordTextField passwordField = new PasswordTextField(password); passwordField.setRequired(true);

[Wicket-user] PasswordTextField.setResetPassword

2006-04-05 Thread Rüdiger Schulz
Hello list, I have a form with a PasswordTextField. If one of the validators of the other fields creates an error, the content of the password field is cleared, as oppossed to all the other fields, which keep their entered values. resetPassword is set to false, but the only effect from this is,

Re: [Wicket-user] PasswordTextField.setResetPassword

2006-04-05 Thread Johan Compagner
will see if i can fix that it is this piece of code:tag.put(value, getResetPassword() ? : getModelObjectAsString());The problem is that it should betag.put(value, getResetPassword() ? : getValue()); But don't know yet if i can do that for the password field.johanOn 4/5/06, Rüdiger Schulz [EMAIL