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 view this discussion on the web visit https://groups.google.com/d/msg/google-web-toolkit/-/GUHV9hZMc8wJ. 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.
