Declined
Last Updated: 20 Oct 2014 14:41 by ADMIN
ADMIN
Stefan
Created on: 30 Dec 2011 04:34
Category: Carousel
Type: Bug Report
2
FIX. RadCarousel - SelectedItem is not assigned when the control is started.
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];
        }
0 comments