Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

radiobuttonlist in a table with flow layout

Status
Not open for further replies.

harmmeijer

Programmer
Mar 1, 2001
869
CN
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?
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
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top