Jump to content
Xtreme .Net Talk

Recommended Posts

Posted (edited)

RESOLVED... see the following post

 

I have the following markup

 

<asp:RadioButtonList ID="DistanceBW" runat="server" CssClass="RadioGrid">
<asp:ListItem Value="20ft" Text="" />
<asp:ListItem Value="21ft to 40ft" Text="" />
<asp:ListItem Value="41ft to 60ft" Text="" />
<asp:ListItem Value="61ft to 99ft" Text="" />
<asp:ListItem Value="100ft" Text="" />
<asp:ListItem Value="NA" Text="" />
</asp:RadioButtonList>

 

which outputs

 

<table id="ctl00_Content_ImageDistance" class="RadioGrid" border="0">
<tr>
<td><input id="ctl00_Content_ImageDistance_0" type="radio" name="ctl00$Content$ImageDistance" value="20ft" /></td>
</tr><tr>
<td><input id="ctl00_Content_ImageDistance_1" type="radio" name="ctl00$Content$ImageDistance" value="21ft to 40ft" /></td>
</tr><tr>
<td><input id="ctl00_Content_ImageDistance_2" type="radio" name="ctl00$Content$ImageDistance" value="41ft to 60ft" /></td>
</tr><tr>
<td><input id="ctl00_Content_ImageDistance_3" type="radio" name="ctl00$Content$ImageDistance" value="61ft to 99ft" /></td>
</tr><tr>
<td><input id="ctl00_Content_ImageDistance_4" type="radio" name="ctl00$Content$ImageDistance" value="100ft" /></td>
</tr><tr>
<td><input id="ctl00_Content_ImageDistance_5" type="radio" name="ctl00$Content$ImageDistance" value="NA" /></td>
</tr>
</table>

 

I want all these checkboxes next to each other (it's going to be part of a table, made up in CSS) but how can I prevent ASP.Net from putting these in seperate <tr>'s?

Edited by travisowens
Experience is something you don't get until just after the moment you needed it
Posted

Looks like I should have googled harder before posting...

 

All I had to do was add RepeatLayout="Flow" to the <asp:RadioButtonList tag

Experience is something you don't get until just after the moment you needed it

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...