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

RadRotator does not scroll vertically when viewed in IE6/IE7

0 Answers 78 Views
Rotator
This is a migrated thread and some comments may be shown as answers.
This question is locked. New answers and comments are not allowed.
Telerik Admin
Top achievements
Rank 1
Iron
Telerik Admin asked on 22 Jul 2010, 01:23 PM
Hello,

We recently discovered a problem with RadRotator's vertical scrolling in IE6/IE7. The problem has been fixed in the latest internal build that you can download from "Your account" section. As an immediate workaround, you can use the following fix:

<head runat="server">
    <title></title>
    <style type="text/css">
        html* .FixRotatorHeight .rrVerticalList
        {
            width: 100px;
        }
    </style>
</head>
<body>
    <form id="form1" runat="server">
    <telerik:RadScriptManager ID="RadScriptManager1" runat="server">
    </telerik:RadScriptManager>
    <telerik:RadRotator ID="RadRotator1" runat="server" CssClass="FixRotatorHeight" ScrollDirection="Up"
        Width="100px" Height="200px" ItemHeight="100" ItemWidth="100" RotatorType="AutomaticAdvance"

Note the CSS class, assigned to the RadRotator control. The width property in the body of the CSS selector matches the width of the RadRotator. If you are using buttons for manual horizontal scrolling, decrease the width in the CSS selector by 20 pixels for each button.

Regards,
the Telerik team
Tags
Rotator
Asked by
Telerik Admin
Top achievements
Rank 1
Iron
Share this question
or