Re: Validate before convert

2017-10-19 Thread Sven Meier
Hi, you can do your md5-hashing in a model wrapper instead:   public class Md5Model implements IModel {     private IModel model;     public Md5Model(IModel model) {   this.model = model;     }     public String getObject() {   return null;     }     public void setObject(String string)

Validate before convert

2017-10-19 Thread Sandor Feher
Hi, I have a form used for changing users' data e.g, mail address, password and so one. I have a custom converter to convert clear text password to md5 hash on the fly. I set up some validators for password (length, complexity..) but the problem is that the validator fires only after the input

Re: Code Generator with Wicket...

2017-10-19 Thread Vit Rozkovec
Awesome, PR welcomed. Cheers. On 10/18/2017 11:29 AM, badgers wrote: Yes! I will check it. When I did my adaptions I will do a pull request. Thx in advance -- Sent from: http://apache-wicket.1842946.n4.nabble.com/Users-forum-f1842947.html