I'm having a hard time getting a password FormElement working, and I'm
not sure if there's just something that I missed, or whose fault it
is.
I have the following code:
Blip blip = wavelet.appendBlip();
TextView logintext = blip.getDocument();
FormView loginform = logintext.getFormView();
logintext.append("username: ");
FormElement username = new FormElement(ElementType.INPUT, "username");
loginform.append(username);
logintext.append("password");
FormElement password = new FormElement(ElementType.PASSWORD,
"password");
loginform.append(password);
The problem is, that when I start typing in the password box, my text
instead appears above the password box in plaintext. What do I need to
do to get this password field working correctly?
--
You received this message because you are subscribed to the Google Groups
"Google Wave API" 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-wave-api?hl=en.