I'm assuming you just want to have the browser handle this, right?  If
so, you need to make sure the Text and Password input boxes are part
of your host page.  IE won't store off the information if you add them
after the page is loaded.

http://stackoverflow.com/questions/2778350/let-browser-save-username-password-values-in-a-login-form

On Sep 14, 11:23 pm, Markandayarushi Pamu <pmru...@gmail.com> wrote:
> 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 google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.

Reply via email to