Unplanned
Last Updated: 12 Jun 2018 08:19 by ADMIN
ADMIN
Georgi I. Georgiev
Created on: 25 Sep 2013 08:25
Category: Carousel
Type: Bug Report
3
FIX. RadCarousel - incorrect item arrangement with small amount of items
To Reproduce:
Add a RadCarousel - add less than 5 items - you can see that the behavior is incorrect

Workaround:
this.carousel.Items.Add(new RadButtonElement("Text"));
for (int i = 0; i < 4; i++)
{
    this.carousel.Items.Add(new RadButtonElement(){ Visibility = ElementVisibility.Hidden });
}

http://www.telerik.com/forums/using-a-radcarousel-with-a-variable-number-of-items-less-than-5
0 comments