This is a migrated thread and some comments may be shown as answers.

Chrome Update breaks RadFormDecorator

1 Answer 72 Views
General Discussions
This is a migrated thread and some comments may be shown as answers.
Jeremy
Top achievements
Rank 1
Jeremy asked on 10 Jul 2012, 02:02 PM
I am using the RadFormDecorator to decorate Selects, RadioButtons, and CheckBoxes, and this has been fine, but after the newest update for Chrome was released, it no longer works for the RadioButtons or CheckBoxes. The Selects still work. Any update or fixes released for this?

Thanks

1 Answer, 1 is accepted

Sort by
0
Bozhidar
Telerik team
answered on 10 Jul 2012, 02:19 PM
Hi,

We are aware of that issue and it is already fixed. A CSS fix is will be provided in the next official release - Q2, 2012, Service Pack 1, scheduled for the last week of July. Until then, you could use the following fix in your projects:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<head runat="server">
    <title></title>
    <style type="text/css">
    .rfdRadio input[type="radio"],
    .rfdCheckbox input[type="checkbox"] {
        -webkit-appearance: none;
    }
    </style>
</head>
<body style="padding-right: 0px; padding-left: 0px; padding-bottom: 0px; margin: 0px;
    padding-top: 0px;">
    <form id="Telerik" runat="server">
    <telerik:RadScriptManager ID="RadScriptManager1" runat="server">
    </telerik:RadScriptManager>
    <telerik:RadFormDecorator ID="RadFormDecorator1" runat="server" DecoratedControls="All"
        EnableRoundedCorners="true" Skin="Office2010Black" />
    <asp:CheckBox ID="chb1" runat="server" Text="Google Chrome" />
    <asp:RadioButton ID="rb1" runat="server" Text="Google Chrome" />
    </form>
</body>
</html>


Kind regards,
Bozhidar
the Telerik team
If you want to get updates on new releases, tips and tricks and sneak peeks at our product labs directly from the developers working on the RadControls for ASP.NET AJAX, subscribe to their blog feed now.
Tags
General Discussions
Asked by
Jeremy
Top achievements
Rank 1
Answers by
Bozhidar
Telerik team
Share this question
or