Im sure there is a really simple solution to this, I just haven't found it
yet.
I have a property in my ActionForm which is of type Member (Member is a
simple Java object which encapsulates data such as first name, last name,
etc.). In my html page I have an html:text tag with the property value set
to member.firstName. The value from the form is populated just fine, but
when trying to reference the form field in javascript to give focus to the
field I get an error because it is interpreting "member" as an object (i.e.
- document.memberForm.member.firstName.focus()). I tried to escape the "."
between member and firstName but that didn't work. Any Ideas???