I can't get it to display a list of objects which are view models.
Using version 2009.2.701.35 with vb.net in a model/view/view model framework.
This displays nothing:
This displays the correct number of items, but it is just then name of the object. i.e. 4 addresses in the list means AddressApp.ViewModel.AddressViewModel as text 4 times in the carousel.
Using version 2009.2.701.35 with vb.net in a model/view/view model framework.
This displays nothing:
| <telerik:RadCarousel |
| x:Name="RCAddressList" |
| ItemsSource="{Binding Path=AddressViewModelList}" |
| telerik:StyleManager.Theme="Office_Blue"> |
| </telerik:RadCarousel |
This displays the correct number of items, but it is just then name of the object. i.e. 4 addresses in the list means AddressApp.ViewModel.AddressViewModel as text 4 times in the carousel.
| <ListView |
| x:Name="ListView" |
| ItemsSource="{Binding Path=AddressViewModelList}" |
| BorderThickness="0" Background="Transparent" |
| HorizontalAlignment="Stretch" VerticalAlignment="Stretch"> |
| <ListView.ItemsPanel> |
| <ItemsPanelTemplate> |
| <telerik:RadCarouselPanel /> |
| </ItemsPanelTemplate> |
| </ListView.ItemsPanel> |
| </ListView> |