Completed
Last Updated: 15 Oct 2015 15:28 by ADMIN
When RadRotator is configured to load its items from a web service (http://demos.telerik.com/aspnet-ajax/rotator/examples/loadondemand/defaultcs.aspx) and it is using the MetroTouch skin, the loading image that is displayed until the items are populated, is missing.
Completed
Last Updated: 14 Sep 2021 11:13 by ADMIN
Release Q3 2014
When the RadRotator control loads its items from a web service, it performs two requests and then stops.
Completed
Last Updated: 26 Dec 2014 14:53 by ADMIN
The items of RadRotator are not rotated correctly when the FrameDuration property is set to a small value and the PauseOnMouseOver property is set to true.
Completed
Last Updated: 21 Jun 2022 09:30 by ADMIN
When you wrap an image in an anchor element in the content of an ItemTemplate of RadRotator, the image will not be clickable.
Unplanned
Last Updated: 03 Nov 2020 11:19 by ADMIN
At present only Coverflow and Carousel modes are animated. This method should animate all rotator modes.
Completed
Last Updated: 08 Jun 2021 13:38 by ADMIN
Release R2 2021 SP1
S error is thrown when the Rotator items do not fill its viewport and EnableRandomOrder="true". The problem occurs in all render modes, when the width of the Rotator is set to 100%.

Error message:
Uncaught Error: Sys.ArgumentNullException: Value cannot be null.
Parameter name: element

WORKAROUNDS:
- set EnableRandomOrder="false" or
- set fixed width to the control, e.g. Width="1000px"



Reproduction code:
        <telerik:RadRotator ID="ProductRotator" runat="server" RotatorType="AutomaticAdvance" Height="100"
            ItemHeight="90" Skin="Default" Width="100%" EnableRandomOrder="true" ScrollDuration="1000">
            <ItemTemplate>
                <div style="width:100px; height: 75px; border: 1px solid red">
                    <%# Eval("title")%>
                </div>
            </ItemTemplate>
        </telerik:RadRotator>


    protected void Page_Load(object sender, EventArgs e)
    {
        if (!IsPostBack)
        {
            ProductRotator.DataSource = GetData();//Producten;
            ProductRotator.DataBind();
        }
    }
    private object GetData()
    {
        DataTable dt = new DataTable();
        dt.Columns.Add("title", typeof(string));
        dt.Columns.Add("desc", typeof(string));
        dt.Rows.Add("T1", "AAA");
        dt.Rows.Add("T2", "BBB");
        dt.Rows.Add("T3", "CCC");
        return dt;
    }
1 2