Password Strength Widget?

2010-07-20 Thread omsrobert
Anyone have a password strength widget for either GWT or GXT? Client side or better client w/server side validation would be great. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to google-web-tool

Re: Password Strength Widget?

2010-07-20 Thread rudolf michael
well you just need to have a server script that do that for you, as for the client side you just need a PasswordTextField Widget with a validator that display the messages back from the server. On Tue, Jul 20, 2010 at 2:30 PM, omsrobert omsrob...@gmail.com wrote: Anyone have a password strength

Re: Password Strength Widget?

2010-07-20 Thread Arthur Kalmenson
, 2010 at 2:30 PM, omsrobert omsrob...@gmail.com wrote: Anyone have a password strength widget for either GWT or GXT?  Client side or better client w/server side validation would be great. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group

Re: Password Strength Widget?

2010-07-20 Thread RPB
; else if (intScore 34 intScore 45) return PASSWORD_LEVEL_STRONG; else return PASSWORD_LEVEL_VERYSTRONG; } } On Jul 20, 12:30 pm, omsrobert omsrob...@gmail.com wrote: Anyone have a password strength widget for either GWT or GXT