I have a problem when using the RadFormDecorator.
In IE6, when I disable a RadioButtonList (also with RadioButton, CheckBox and CheckBoxList), they are displayed as selected, only the display, but the controls are not really selected.
The following example:
In IE6, when I disable a RadioButtonList (also with RadioButton, CheckBox and CheckBoxList), they are displayed as selected, only the display, but the controls are not really selected.
The following example:
<asp:RadioButtonList ID="rbl_radio_list" runat="server" Enabled="false"> <asp:ListItem Text="Radio List Item 1" Value="1"></asp:ListItem> <asp:ListItem Text="Radio List Item 2" Value="2"></asp:ListItem> <asp:ListItem Text="Radio List Item 3" Value="3"></asp:ListItem></asp:RadioButtonList><asp:RadioButton ID="rdb_radio" runat="server" Text="Radio 1" Enabled="false" Checked="false"/><asp:CheckBoxList ID="cbl_check_list" runat="server" Enabled="false"> <asp:ListItem Text="Check List Item 1" Value="1"></asp:ListItem> <asp:ListItem Text="Check List Item 2" Value="2"></asp:ListItem> <asp:ListItem Text="Check List Item 3" Value="3"></asp:ListItem></asp:CheckBoxList><asp:CheckBox ID="cbx_check" runat="server" Text="Check 1" Enabled="false" Checked="false" /><telerik:RadFormDecorator ID="rfd_radio" runat="server" DecoratedControls="RadioButtons" /><telerik:RadFormDecorator ID="rfd_check" runat="server" DecoratedControls="CheckBoxes" />