> So reading your comments, Jim, it sounds like your using code analagous to
> this but your implementation uses a map instead (?)

Yeah, I use them in form fields, for <select></select>, radio buttons
and checkboxes.

> BTW, now that I'm using html field names like customerContactName[0].title,
> I find that conventional javascript to set focus doesn't work - I get
> javascript errors.  Any ideas how to reference these fields?

You can reference the javascript like

        document.form_name['customerContactName[0].title'].value

Because JavaScript thinks the name is a valid JavaScript construct
and so trys to look it up in its DOM model.

Reply via email to