Thx for the reply ...... Same things I am doing .......I put the hidden textboxes username and password in my jsp page which is the first page of my application.
But still same problem I am facing .................it is asking the prompt to remember password, but when I type user name it is not picking the remember password. That is my exact problem .. Rushi On Mar 13, 9:24 pm, Joseph Lust <[email protected]> wrote: > Markandayarushi Pamu, > > This is a common issue on dynamically generated webapp content. Basically, > the browser looks for a form with name 'password', as a password input, and > any other fields like 'email' or 'username.' If they are found, the browser > offers to remember them when they are posted. However, to refill them, the > browser checks *at load time* for the fields. Because technologies like > ExtJs and GWT insert these items into the DOM dynamically, those fields are > not found by the browser at the instant of loading. > > To correct this, I hardcode the form and fields into the header (hidden > from the user). Then, when the login form initializes, it checks this > hidden form and copies the values from it if finds any. > > You can see the login form of my site,http://www.runpartner.com, which > uses this method to get the credentials remembered and prefilled. > > Sincerely, > Joe -- 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.
