RE: dynamic alteration of multiple entry select box content with javascript : empty values upon submission

2002-03-27 Thread Etienne, Ingo (Goetzfried AG)
You have to select all the options before submit like this: function activateOptions(field){ for(i=0;ifield.options.length;i++){ field.options[i].selected=true; } } hth Ingo -Original Message- From: Struts Newsgroup [mailto:[EMAIL PROTECTED]]

RE: dynamic alteration of multiple entry select box content with javascript : empty values upon submission

2002-03-27 Thread @Basebeans.com
Subject: RE: dynamic alteration of multiple entry select box content with javascript : empty values upon submission From: Simon Kirk [EMAIL PROTECTED] === Ah, you're right - I think I'm missing a vital part of my setup - the function to select the stuff in the right hand boxes! What a foolish