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

Checkbox jumps on mouseover - when button disabled

2 Answers 158 Views
Button
This is a migrated thread and some comments may be shown as answers.
Adam
Top achievements
Rank 1
Adam asked on 14 Jan 2011, 05:40 PM
What can I do to address this issue?

Thanks.



<%@ Register TagPrefix="telerik" Namespace="Telerik.Web.UI" Assembly="Telerik.Web.UI" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<head id="Head1" runat="server">
    <title></title>
    <style type="text/css">
       
          
        .myRadButton.rbToggleButton
        {
            color: #000;
            font-size: 10px !important;
            text-decoration: none !important;
        }
          
        .myRadButton.rbToggleButton:hover
        {
            color: #863d02;
        }
          
        .myRadButton.rbToggleButton .rbText
        {
            text-align: left !important;
            padding-left: 20px !important;
            font-size: 10px !important;
        }
          
        .myRadButton.rbToggleButton.rbDisabled, .myRadButton.rbToggleButton:hover
        {
            color: #6a6a6a;
            font-size: 10px !important;
            text-decoration: none !important;
        }
    </style>
</head>
<body>
    <form id="form1" runat="server">
    <asp:ScriptManager ID="ScriptManager1" runat="server">
    </asp:ScriptManager>
    <telerik:RadButton ID="btnOffice" runat="server" ButtonType="ToggleButton" ToggleType="CustomToggle"  CssClass="myRadButton" Enabled=false
       Width="100%" Text="CheckBox">
        <ToggleStates>
            <telerik:RadButtonToggleState PrimaryIconCssClass="rbToggleCheckbox"
                Text="test" />
            <telerik:RadButtonToggleState PrimaryIconCssClass="rbToggleCheckboxChecked"
                Text="test" />
        </ToggleStates>
    </telerik:RadButton>
    </form>
</body>
</html>

2 Answers, 1 is accepted

Sort by
0
Accepted
Bozhidar
Telerik team
answered on 17 Jan 2011, 08:52 AM
Hello Adam,

I have tested your code trying to reproduce the issue but to no avail. Make sure that you are using the latest official Telerik release - Q3 Service Pack 1 - 2010.3 1215. In the previous version, before the service pack there were some wrong CSS positions for the disabled checkboxes hover states, but for the Service Pack 1 release they have been fixed.

If you are experiencing that problem, that suggests to me, that you are using the version before the fix.

Kind regards,
Bojo
the Telerik team
Browse the vast support resources we have to jump start your development with RadControls for ASP.NET AJAX. See how to integrate our AJAX controls seamlessly in SharePoint 2007/2010 visiting our common SharePoint portal.
0
Adam
Top achievements
Rank 1
answered on 18 Jan 2011, 05:36 PM
Yes, upgrading to the latest release solved my problem.  

Thanks
Tags
Button
Asked by
Adam
Top achievements
Rank 1
Answers by
Bozhidar
Telerik team
Adam
Top achievements
Rank 1
Share this question
or