I have five fields, two are password fields. All are required.

If the user does not complete the first field but does complete the password fields, when they submit and server side validation kicks them back to their form with the appropriate validation messages, the two password fields are empty.

I tried defaulting the password fields as well. Nope.

Anyone know of a trick to keep those password field values if the form comes back as invalid?

link|improve this question
feedback

2 Answers

When it comes back from the server you can set the password field by changing the attribute 'value' with the password you got in the post. Something like in the onload event with javascript "dojo.attr('passwordnode', 'value', 'userpassword');"

link|improve this answer
feedback
up vote 1 down vote accepted

Found it!

The redisplay property on the field will allow the entered value to persist. On password fields it is off so you must set the value to true.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.