Hello,
I have a problem with the tileview control.
I have a tileview in my page with RadFluidContentControl to have different view depends on the size :
<telerik:RadTileView IsItemsAnimationEnabled="False"> <telerik:RadTileViewItem> <telerik:RadFluidContentControl TransitionDuration="0" State="Large" SmallToNormalThreshold="400 400" NormalToSmallThreshold="400 400" NormalToLargeThreshold="600 600" LargeToNormalThreshold="600 600"> <telerik:RadFluidContentControl.SmallContent> <StackPanel x:Name="SmallContent"> <TextBlock Text="Small"/> <TextBlock Text="{Binding MyList.Count}"/> <ListBox ItemsSource="{Binding MyList, Mode=TwoWay}"/> </StackPanel> </telerik:RadFluidContentControl.SmallContent> <telerik:RadFluidContentControl.Content> <StackPanel x:Name="Content"> <TextBlock Text="Normal"/> <TextBlock Text="{Binding MyList.Count}"/> <ListBox ItemsSource="{Binding MyList, Mode=TwoWay}"/> </StackPanel> </telerik:RadFluidContentControl.Content> <telerik:RadFluidContentControl.LargeContent> <StackPanel x:Name="LargeContent"> <TextBlock Text="Large"/> <TextBlock Text="{Binding MyList.Count}"/> <ListBox ItemsSource="{Binding MyList, Mode=TwoWay}"/> </StackPanel> </telerik:RadFluidContentControl.LargeContent> </telerik:RadFluidContentControl> </telerik:RadTileViewItem> </telerik:RadTileView> MyList is just a List of String with 2 elements.
When I ran the application, only the listbox in the normal content displayed the 2 elements. In the small and large content the list was empty.
But in all contents (small, normal and large) the textblock displayed the correct number of elements in my list (2).
Do I something wrong ?
Thanks in advance for your answer.
Regards,
Patrick