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.