Hi,

I have a HTML Form in wich I use iterate Tag to set same number of Text
inputs as my data bean has :

<logic:iterate id="echeance" name="dataBean" property="echeances">

    <html:text property="echeancier.date" />

</logic:iterate>

As you can see, my form is nested, so in javascript I must use elements
notation like this :
document.MyForm.elements['echeancier.date']

But here my text fields are indexed, so how can I access them in javascript
?

document.MyForm.elements['echeancier.date'][0] doesn't work ...




--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to