D
DL
<select id="qType"+i name="qType"+i onchange="doCheckbox('+i
ok, the most desirable thing is to either send or somehow be able to
retrieve the newly populated value of the SELECT element from the
doCheckbox function. And if this option is a no go, send the whole
form? onchange="doCheckbox(form.submit(),'+i+','+nextrow+')"> //
won't work
// it's about 10:24pm here, am I getting real slow?
Thanks.
+','+nextrow+')"><option value="YN" selected>Yes/No<option
value="CK">Checkbox<option value="RD">Radio</select>
// silly me, the form wasn't sent, how to expect an element of it?
// now, I only need this SELECT element for the doCheckbox function,
could I re-write the above code to
<select id="qType"+i name="qType"+i
onchange="doCheckbox(this.value,'+i+','+nextrow+')"><option value="YN"
selected>Yes/No<option value="CK">Checkbox<option value="RD">Radio</
select>
to pass the SELECT element's value along?
ok, the most desirable thing is to either send or somehow be able to
retrieve the newly populated value of the SELECT element from the
doCheckbox function. And if this option is a no go, send the whole
form? onchange="doCheckbox(form.submit(),'+i+','+nextrow+')"> //
won't work
// it's about 10:24pm here, am I getting real slow?
Thanks.