I'm having trouble using indexed select. I need to create several select boxes dynamically but I also need to be able to manipulate the data with client side JavaScript.
The values I want to change with JavaScript are coming up on the JSP as follows: org.apache.struts.taglib.html.BEAN[0].formDateYear org.apache.struts.taglib.html.BEAN[1].formDateYear org.apache.struts.taglib.html.BEAN[2].formDateYear Is there any way to access these via a JavaScript function so I change the values as I wish? The normal approach for non indexed value would be to access "document.form.formDateYear.value" and assign it with a new value. Thanks, Ciaran