The checkboxes decorated with RadFormDecorator appeared double in Classic rendering after upgrading to Firefox 63.
Steps to reproduce:
1. Upgrade to Firefox 63
2. Run the following setup
<telerik:RadFormDecorator runat="server" DecoratedControls="CheckBoxes" RenderMode="Classic" />
<div>asp:Checkbox</div>
<asp:CheckBox ID="chkApproved" runat="server" Text="asp:Checkbox" />
<div>Html Input</div>
<input id="chkApproved1" type="checkbox" name="chkApproved" />
======================================
Solutions found so far:
1) Use RadFormDecorator in Lightweight RenderMode:
<telerik:RadFormDecorator runat="server" RenderMode="Lightweight"/>
2) Set the RadFormDecorator's DecoratedControls="All":
<telerik:RadFormDecorator runat="server" RenderMode="Classic" DecoratedControls="All" />
3) Set the ControlsToSkip="CheckBoxes"
<telerik:RadFormDecorator runat="server" RenderMode="Classic" ControlsToSkip="CheckBoxes" />
4) Or add the following CSS overwrite to the page:
<style>
.rfdCheckboxUnchecked, .rfdCheckboxChecked {
padding: 0 !important;
background-image: none !important;
}
</style>