Good afternoon--
The RadRotator is working well in a SlideShow / Two Custom Button setup, except at random times on mouseover, the slideshow seems to "hang" for longer than FrameDuration. At this point, the two custom buttons are unresponsive and the next slide does not advance for 5-6 seconds. The slideshow then resumes, and another "hang" will happen at another random time on mouseover.
Is there something I can change to prevent this behavior?
Code is provided below.
Thanks
-Justin
<div id="notifications"> <telerik:RadRotator ID="rtrNotifications" runat="server" RotatorType="SlideShow" Height="15" FrameDuration="3000" SlideShowAnimation-Type="Fade" SlideShowAnimation-Duration="2000" PauseOnMouseOver="true" Width="767" ItemWidth="767" ItemHeight="15" > <ItemTemplate> <a href='<%# _appRoot %>/secure/notifications/NotificationDetail.aspx?id=<%# Eval("ID").ToString() %>'> <%# System.Web.HttpUtility.HtmlEncode(Eval("Heading").ToString()) %> </a> </ItemTemplate> <ControlButtons /> </telerik:RadRotator> </div> <div id="notifyButtons"> <a href="#" class="rrButtonLeft" style="display:block" onclick="showNextItem(this, $find('<%= rtrNotifications.ClientID %>'), Telerik.Web.UI.RotatorScrollDirection.Left); return false;"> </a> <a href="#" class="rrButtonRight" style="display:block" onclick="showNextItem(this, $find('<%= rtrNotifications.ClientID %>'), Telerik.Web.UI.RotatorScrollDirection.Right); return false;" > </a> </div> <script type="text/javascript"> function showNextItem(clickedButton, rotator, direction) { rotator.showNext(direction); } </script>