A
astreegz
I am trying to use a dropdown(jump_menu) to populate multiple text box's and
I'm having trouble. I have about 5 text fields for a user to populate,
however, I'd like to preload common users into a dropdown. By selecting
their name it would populate all the fields and be ready to submit. Any
thoughts? This is what I have now but it is obviously only populating the
first field.
<p>
<select size="1" onchange="document.form1,field1.value=this.value" id="id1"
name="D1">
<option value>Select User</option>
<option value="Joe Smith|street|city|state|zip">User 1</option>
<option value="Jane Woman|street|city|state|zip">User 2</option>
<option value="Alex Man|street|city|state|zip">Reception</option>
</select></p>
I'm having trouble. I have about 5 text fields for a user to populate,
however, I'd like to preload common users into a dropdown. By selecting
their name it would populate all the fields and be ready to submit. Any
thoughts? This is what I have now but it is obviously only populating the
first field.
<p>
<select size="1" onchange="document.form1,field1.value=this.value" id="id1"
name="D1">
<option value>Select User</option>
<option value="Joe Smith|street|city|state|zip">User 1</option>
<option value="Jane Woman|street|city|state|zip">User 2</option>
<option value="Alex Man|street|city|state|zip">Reception</option>
</select></p>