2008.3.1125.35
I defined 2 radio buttons in GridTemplateColumn and I want them to display horizontally without wrapping.
I tried setting ItemStyle wrap="false" or larger width, and GridTemplateColumn AllowResize="false". It still wraps when the browser window is shrunk.
The only way I can make it not re-size is using a table and set nowrap in TD, but it caused another problem. The grid is using Web20 skin and ItemStyle BackColor is GreenYellow, and it leaves a bottom border line that I could not get rid of unless I explicitly set it to border none in TD.
Are these the necc. workaround?
<table>
<tr>
<td nowrap style="border-style:none">
<asp:RadioButton ID="rdo1" Text="test1" GroupName="Opt" runat="server" />
<asp:RadioButton ID="rdo2" Text="test2" GroupName="Opt" runat="server" />
</td>
</tr>
</table>
I defined 2 radio buttons in GridTemplateColumn and I want them to display horizontally without wrapping.
I tried setting ItemStyle wrap="false" or larger width, and GridTemplateColumn AllowResize="false". It still wraps when the browser window is shrunk.
The only way I can make it not re-size is using a table and set nowrap in TD, but it caused another problem. The grid is using Web20 skin and ItemStyle BackColor is GreenYellow, and it leaves a bottom border line that I could not get rid of unless I explicitly set it to border none in TD.
Are these the necc. workaround?
<table>
<tr>
<td nowrap style="border-style:none">
<asp:RadioButton ID="rdo1" Text="test1" GroupName="Opt" runat="server" />
<asp:RadioButton ID="rdo2" Text="test2" GroupName="Opt" runat="server" />
</td>
</tr>
</table>