Hi,

I want to implement the remember username and password functionality
in my application.

We are using the GWT version 2.2. I have tried to implement but user
name auto complete is only working in the Fiirefox, Chrome and not
working IE. remember the password is not working any browser. Actually
when submit the form it is asking to save the password and it is
stored in the browser but when I select the user name from auto
complete suggested items password is not populating.

My code is

               FormPanel formPanel = new FormPanel();
               formPanel.setMethod(FormPanel.METHOD_POST);
               HTMLPanel verticalPanel = new HTMLPanel("");
               TextBox textBox = new TextBox();
               textBox.setName("username");
               verticalPanel.add(textBox);
               PasswordTextBox password= new PasswordTextBox();
               password.setName("password");
               verticalPanel.add(password);
               Button btn = new SubmitButton();
               btn.setText("Click");
               verticalPanel.add(btn);
               formPanel.add(verticalPanel);
               formPanel.setAction("/");
               HTMLPanel htmlPanel = new HTMLPanel("");
               htmlPanel.add(formPanel);
               RootPanel.get().add(formPanel);


Please help me how to implement remember user name and password in
GWT .

Thanks
P.M.Rushi

-- 
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.

Reply via email to