Hi. I am have a dropdown 'select' that should populate several other fields on the page depending on which item was selected. My select objects come from a
java object (I'm using jsps and jstl to iterate through the object list and populate the options.) Other fields in the java object would be the (default) values for the fields that are populated based on the selection. My intention is to populate arrays using javascript with the values contained in the object for each field and then use the selected index to access them and set the form values. My problem is how to get the extra fields out of the java object and into the javascript array. Here's where I'd like to do it:
How can I accomplish this? Thanks!