Here is a RadioButton list that I'm working with:
<asp:Panel ID="pnl_select_sign" runat="server" Visible="false" Style="text-align: right">
<asp:RadioButtonList ID="rb_select_sign" runat="server" AutoPostBack="true" RepeatDirection="Horizontal"
OnSelectedIndexChanged="rb_select_sign_SelectedIndexChanged" CausesValidation="false"
AppendDataBoundItems="true">
<asp:ListItem Selected="True" Value="0">Normal</asp:ListItem>
<asp:ListItem Value="1">Electronic</asp:ListItem>
</asp:RadioButtonList>
</asp:Panel>
I am looking to update the overflow-y
CSS property.
Change overflow-y :auto;
to overflow-y :hidden;
This change should be applied to the div with id = wrap_form
When selecting the ListItem with Value = 1;
Output from FireBug:
<td>
<input id="ctl00_ContentPlaceHolder1_rb_select_sign_0" type="radio" onclick="javascript:setTimeout('__doPostBack(\'ctl00$ContentPlaceHolder1$rb_select_sign$0\',\'\')', 0)" value="0" name="ctl00$ContentPlaceHolder1$rb_select_sign">
<label for="ctl00_ContentPlaceHolder1_rb_select_sign_0">Normal</label>
</td>
<td>
<input id="ctl00_ContentPlaceHolder1_rb_select_sign_1" type="radio" checked="checked" value="1" name="ctl00$ContentPlaceHolder1$rb_select_sign">
<label for="ctl00_ContentPlaceHolder1_rb_select_sign_1">Electronic</label>
</td>