Completed
Last Updated: 27 Dec 2016 14:50 by ADMIN
To reproduce:
- add carousel with few items in it
- subscribe to the mentioned events
- start the application = > one item is selected but the events are not fired.
Completed
Last Updated: 14 Dec 2016 14:56 by ADMIN
RadCarousel not rotating when the AnimationToApply property is set (263070)

To reproduce: 
from tickets: 263070,258135 
1. Add radCarousel with 5 RadImageButtonelements
2. Set the AnimationsToApply property to Animations.Location 

Workaround: 
this.radCarousel1.CarouselPath.ZScale = 1000;
this.radCarousel1.OpacityChangeCondition = Telerik.WinControls.UI.OpacityChangeConditions.None;
this.radCarousel1.AnimationsToApply = Telerik.WinControls.UI.Animations.All;
Completed
Last Updated: 10 Oct 2014 13:47 by ADMIN
Use the following code:

RadCarousel c = new RadCarousel
{
    Parent = this,
    Dock = DockStyle.Fill
};

for (int i = 0; i < 50; i++)
{
    c.Items.Add(new MyButtonElement("Button " + i));
}

c.VisibleItemCount = 3;

Start the application and click the buttons to switch the elements, you will see the exception
Completed
Last Updated: 10 Oct 2014 13:33 by ADMIN
ADMIN
Created by: Dess | Tech Support Engineer, Principal
Comments: 0
Category: Carousel
Type: Bug Report
0
To reproduce: add a RadCarousel and try to add items at design time using the SmartTag.  If you try to add more than three items, you get an error: "Index was out of range.  Must be non-negative and less than the size of the collection.  Parameter name: index"
Completed
Last Updated: 23 Jul 2014 07:26 by ADMIN
ADMIN
Created by: Stefan
Comments: 0
Category: Carousel
Type: Bug Report
4
1. Add few RadImageItems with assigned images to them in RadCarousel
2. Try to remove the selected item upon a button click
= > the item is removed from the Items collection, but remains visible on the screen and remains in the Children collection
Completed
Last Updated: 26 Aug 2011 06:31 by ADMIN
ADMIN
Created by: Stefan
Comments: 0
Category: Carousel
Type: Bug Report
0
FIX. RadCarousel - SelectedItemChanged event is not fired