This is a migrated thread and some comments may be shown as answers.

RadCarousel with NorthWind Tests

2 Answers 140 Views
Carousel
This is a migrated thread and some comments may be shown as answers.
Andre
Top achievements
Rank 1
Andre asked on 08 Jul 2008, 06:51 PM

Hi all from Telerik.

Congratulations for RadControls.

I'm testing the RadCarousel with NORTHWIND database (SQL Server 2005 Express).

I'm using the Employee Table and RadCarousel display the Photo.

When I change the picture, I think the radCarousel don’t paint correctly.

Can you help in this test?

I used Visual Studio 2008 Express, Windows Form Application with C# and LINQ for DataAccess.

Simple and easy.

Image:

http://www.andre-abrantes.150m.com/radCarouselEmployee.jpg http://www.andre-abrantes.150m.com/radCarouselEmployee_Release.zip http://www.andre-abrantes.150m.com/radCarouselEmployee_Source.zip

Thanks in advance.

André Abrantes.

2 Answers, 1 is accepted

Sort by
0
Andre
Top achievements
Rank 1
answered on 08 Jul 2008, 07:06 PM
Ops. Try to open directly the follow site:

http://www.andre-abrantes.150m.com/

With this link, we can see the image thats show the problem.
0
Accepted
Mike
Telerik team
answered on 09 Jul 2008, 11:47 AM
Hello Andre,

We have a reported issue, related to binding RadCarousel using a BindingSource component, and synchronizing with the binding source items. The problem should be fixed with the upcoming release Q2 2008. In the meantime you can consider modifying the code a bit. The workaround for this problem is explained bellow.

You should assign carousel's DataSource, after conecting the binding source to the data:

this.radCarousel1.DataSource = null;
employeeBindingSource.DataSource = query.ToList();
this.radCarousel1.DataSource = employeeBindingSource;


Please, excuse us for the inconvenience caused. Don't hesitate to contact us if you have further questions.

Kind regards,
Mike
the Telerik team

Instantly find answers to your questions at the new Telerik Support Center
Tags
Carousel
Asked by
Andre
Top achievements
Rank 1
Answers by
Andre
Top achievements
Rank 1
Mike
Telerik team
Share this question
or