harmmeijer
Programmer
I cannot get this to work with a radiobuttonlist. Radiobuttons have to be inbedded in a table.
page has to look like this:
Anoboy got an idea on how to do this?
Greetings, Harm Meijer
page has to look like this:
Anoboy got an idea on how to do this?
Code:
<table style="width:700px">
<tr>
<td style="width:700px:" colspan=3>
Main question can be answered yes or no.
</td>
</tr>
<tr>
<td style="width:50px">
Yes
</td>
<td style="width:50px">
<INPUT id=rad_0 type=radio value=0 name=rad>
</td>
<td style="width:600px">
subanswer 1 for yes
</td>
</tr>
<tr>
<td style="width:50px">
</td>
<td style="width:50px">
<INPUT id=rad_1 type=radio value=1 name=rad>
</td>
<td style="width:600px">
subanswer 2 for yes
</td>
</tr>
<tr>
<td style="width:50px">
No
</td>
<td style="width:50px">
<INPUT id=rad_2 type=radio value=2 name=rad>
</td>
<td style="width:600px">
subanswer 1 for no
</td>
</tr>
<tr>
<td style="width:50px">
</td>
<td style="width:50px">
<INPUT id=rad_3 type=radio value=3 name=rad>
</td>
<td style="width:600px">
subanswer 2 for no
</td>
</tr>
</table>
Greetings, Harm Meijer