Thank for your reply .. Same thing we have implemented , this is working in IE, but in Mozila and Chrome somehow not working..
In Firefox after enter the username password it will ask to remember the pasword, after remember the password, logout from the system then enter login name then it user name auto complete is showing the previous users, but after select the user password is not populating. But once you refresh the borwser it is coming. I don't know what is this strange behaviour ... Please suggest me if it has any solution .. On Fri, Sep 16, 2011 at 7:08 PM, jhulford <[email protected]> wrote: > 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 <[email protected]> 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 [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. > > -- Regards, *MARKANDAYARUSHI PAMU* Hyderabad - India Mobile - +919704604177 -- 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.
