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.
There are problems with the position of the control buttons of RadRotator in IE and Opera when lightweight render mode of the control is enabled either by setting RenderMode to Lightweight or by setting RenderMode to Auto, which in turn enables lightweight mode in the appropriate browsers. The workaround for this issue is to set the RenderMode property to Classic.
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.
You can observe it here: http://demos.telerik.com/aspnet-ajax/rotator/examples/carouselmode/defaultcs.aspx by clicking either of the sequences. Note: set the rotator to CarouselButtons to avoid cinfusion stemming from automatic advance. - red, grey, green. You will see red instead of green - blue, green, gray. You will see blue instead of gray One more item was rotated in each case. A workaround is to disable animations for these second and last items when their counterpart is currently shown: function OnClientItemClicked(sender, args) { var shouldAnimate = true; var indextToChangeTo = args.get_item().get_index(); var currIndex = sender.get_currentItemIndex(); var itemsCount = sender.get_items().length; if (currIndex == itemsCount - 1 && indextToChangeTo == 1 || //last item is shown, the second item is clicked currIndex == 1 && indextToChangeTo == itemsCount - 1) { //second item is shown, last item is clicked shouldAnimate = false; } sender.set_currentItemIndex(indextToChangeTo, shouldAnimate); }
When the rotator items are added declaratively by placing RadRotatorItem element in the Items collection, changing ItemWidth on the code-behind does not affect the width of the items.
When 'FrameDuration' is set with small value, for example 1, the rotator will not be paused on mouse over even if 'PauseOnMouseOver' is set to 'true'.
If a RadRotator is set in AutomaticAdvance mode and its property PauseOnMouseOver is set to true, it will start scrolling incorrectly when the cursor is moved over the items in the scroll direction before the scrolling is completed.
When a RadRotator is configured in CoverFlowButtons mode and the currently displayed item is set via the client-side method set_currentItemIndex before the items are scrolled manually, the enabled/disabled state will not be applied correctly to the control buttons.