Skip Navigation LinksHome / Community & Support / Developer Productivity Tools Forums / ASP.NET > Rotator > Bug in the CarouselButtons Rotator
RadControls for ASP.NET are no longer supported (see this page for reference). In case you have inquiries about the Telerik ASP.NET AJAX controls, post them in the pertinent ASP.NET AJAX forums.

Not answered Bug in the CarouselButtons Rotator

Feed from this thread
  • Andre avatar

    Posted on Oct 6, 2010 (permalink)

    Hello,

    I have an issue with  the CarouselButton:

    I bind a datasource from a list like that:

     

    List<ProductInfo> PInfos = new List<ProductInfo>();

     

    PInfos.Add(

    new ProductInfo(222, "ProductName", new DateTime(633466656000000000), "dqsdqs", "dqsdqd", "~/Temp/user_product/222_thumb.png", "kjhkhkh"));

    etc... I have 7 ProductInfo in my list.

    In my rotator, I want to display the images given by the field named "Url_Thumbnail" ("~/Temp/user_product/222_thumb.png" in my first ProductInfo).

    I do:

     

    <

     

    telerik:RadRotator ID="RadRotator1" runat="server" Width="280px" Height="200px" CssClass="rotatorStyle" ItemHeight="100" ItemWidth="100">
    <ItemTemplate>
    <table>
    <tr>
    <td>
    <asp:ImageButton ID="Image1" runat="server" AlternateText='<%# DataBinder.Eval(Container.DataItem, "Name") %>'

     

     

     

    ImageUrl='<%# DataBinder.Eval(Container.DataItem, "Url_Thumbnail") %>'

     

     

     

    CssClass="RotatorItem" />

     

     

     

    </td>

     

     

     

    </tr>

     

     

     

    </table>

     

     

     

    </ItemTemplate>

     

     

     

    </telerik:RadRotator>

    The rotator seems working correctly, but if I click a left or right button, when I do a loop (6 clicks) and 2 clicks more, the images are switched round.  All the images goes back one step.  Then the rotator works correctly but  there is a gap between the image displayed and the item (and its others properties). And every loop, the bug appears.

    Could you help me please to reslove this issue?

    Thank You.

     

     

     

     

     

     

     

     

     

     

     

  • Tsvetie Tsvetie admin's avatar

    Posted on Oct 11, 2010 (permalink)

    Hi Andre,
    I tried to reproduce the problem with our online demo - http://demos.telerik.com/aspnet-ajax/rotator/examples/carouselmode/defaultcs.aspx, but to no avail. Could you please specify which exact version of the Telerik.Web.UI assembly you use? It would be best if you could send us a running test project that demonstrates this problem so that we can debug it on our side.

    In the meantime, in case you are not using the latest version (2010.2.929), I would recommend that you test your page with it to see if we have already fixed the problem.

    Kind regards,
    Tsvetie
    the Telerik team

    Check out Telerik Trainer, the state of the art learning tool for Telerik products.

Back to Top

Skip Navigation LinksHome / Community & Support / Developer Productivity Tools Forums / ASP.NET > Rotator > Bug in the CarouselButtons Rotator