Declined
Last Updated: 20 Oct 2014 14:41 by ADMIN
FIX. RadCarousel - SelectedItem is not assigned when the control is started.

Resolution: 

Selected Items represents the Clicked by mouse item and this behavior is a desired behavior.

So it should be not populated without user click on an item:

Instead the users should use the SelectedIndexChanged event in order to detect the current item:

        private void radCarousel1_SelectedItemChanged(object sender, EventArgs e)
        {
            currentItem = radCarousel1.Items[radCarousel1.SelectedIndex];
        }
Declined
Last Updated: 23 Jul 2014 07:48 by ADMIN
The SelectedItemChanged event is not firing when you click on arrows. Only the SelectedIndexChanged event is firing.

Resolution: 
The SelectedItemChanged event should be fire only if user click on the item and the ItemClickDefaultAction property is set to SelectItem mode