hi,
on client-side, i have a form with 2 fields and 2 buttons (1 text, 1 multi-select list, next button, submit button). after the user enters the info, clicking on the "next" button will allow the user additional iterations of the same entry form. clicking on the submit button will send data to server-side for processing.
behind the scenes i created hidden inputs to store the info for each iteration. i used the document.formname.fieldname.value property to assign values to the hidden fields.
this works for the first field (text). however, for the second field (if i chose two items from the multi-select list), it only assigns the top-most item chosen to the hidden field.
is there a way around this?
thank you for any ideas.
rem736.
on client-side, i have a form with 2 fields and 2 buttons (1 text, 1 multi-select list, next button, submit button). after the user enters the info, clicking on the "next" button will allow the user additional iterations of the same entry form. clicking on the submit button will send data to server-side for processing.
behind the scenes i created hidden inputs to store the info for each iteration. i used the document.formname.fieldname.value property to assign values to the hidden fields.
this works for the first field (text). however, for the second field (if i chose two items from the multi-select list), it only assigns the top-most item chosen to the hidden field.
is there a way around this?
thank you for any ideas.
rem736.