hey,
since last chrome update, the browser supports storing and restoring passwords for javascript fields... chrome puts the values correct into the login and password fields... but the methods txtPassword.getValue() or txtPassword.getValueAsString() are returning null.
If the user clicks with a simple mouse click into the password field, the same methods are returning the correct password.
this happens with latest SmartGWT 4.1p
Thanks
Andy
since last chrome update, the browser supports storing and restoring passwords for javascript fields... chrome puts the values correct into the login and password fields... but the methods txtPassword.getValue() or txtPassword.getValueAsString() are returning null.
If the user clicks with a simple mouse click into the password field, the same methods are returning the correct password.
Code:
PasswordItem txtPassword = new PasswordItem( "txtPassword", Pass ); txtPassword.setWidth( "*" ); txtPassword.setLength( 30 ); txtPassword.setRequired( true );
Thanks
Andy
Comment