This question is locked. New answers and comments are not allowed.
Hi,
I have been testing RadControls for Silverlight Q2 2010 Tileview. It works fine with RadFluidContentControl's three states but without any huge amount of content in the "Large Content" case.
I populated the "large content" with stackpanel which holds about 30 controls comprising of Label and Textbox in vertical orientation. This is to use as an input form.
The problem is that when I run the program, IE freezes and nothing happens, so I have to KILL the process.
Also if I put fewer controls and run the code it runs fine until I resize the window so that the last control now touches the bottom of window. The IE freezes again.
I also wanted scrollbars to be displayed in the TileViewItem Content section so that I can scroll to fill in the form without resizing the window. Is this possible? If yes, how do I go about it?
Thanks in advance.
I have been testing RadControls for Silverlight Q2 2010 Tileview. It works fine with RadFluidContentControl's three states but without any huge amount of content in the "Large Content" case.
I populated the "large content" with stackpanel which holds about 30 controls comprising of Label and Textbox in vertical orientation. This is to use as an input form.
The problem is that when I run the program, IE freezes and nothing happens, so I have to KILL the process.
Also if I put fewer controls and run the code it runs fine until I resize the window so that the last control now touches the bottom of window. The IE freezes again.
I also wanted scrollbars to be displayed in the TileViewItem Content section so that I can scroll to fill in the form without resizing the window. Is this possible? If yes, how do I go about it?
Thanks in advance.
<telerik:RadTileViewItem Header="Nutrient Input Analysis" TileState="Maximized" MinWidth="0" > <telerik:RadFluidContentControl SmallToNormalThreshold="400 0" NormalToSmallThreshold="400 0" LargeToNormalThreshold="600 0" NormalToLargeThreshold="600 0" ScrollViewer.VerticalScrollBarVisibility="Visible"> <!--Small Content--> <telerik:RadFluidContentControl.SmallContent> <Grid> <TextBlock FontSize="29.333" FontFamily="Alien League" VerticalAlignment="Top" Margin="94,8,86,0" d:LayoutOverrides="Width"> Summary</TextBlock> </Grid> </telerik:RadFluidContentControl.SmallContent> <!--Normal Content--> <telerik:RadFluidContentControl.Content> <Grid> <TextBlock Text="NORMAL VIEW"/> </Grid> </telerik:RadFluidContentControl.Content> <!--Large Content--> <telerik:RadFluidContentControl.LargeContent> <StackPanel Orientation="Vertical"> <sdk:Label x:Name="lblTotalArea" HorizontalAlignment="Left" Grid.Column="0" Grid.Row="0" VerticalAlignment="Center" Content="Label" /> <TextBox HorizontalAlignment="Left" VerticalAlignment="Center" Width="100"/> <sdk:Label x:Name="lblTotalArea1" HorizontalAlignment="Left" VerticalAlignment="Center" Content="Label" /> <TextBox HorizontalAlignment="Left" VerticalAlignment="Center" Width="100"/> <sdk:Label x:Name="lblTotalArea2" HorizontalAlignment="Left" VerticalAlignment="Center" Content="Label"/> <TextBox HorizontalAlignment="Left" VerticalAlignment="Center" Width="100"/> <sdk:Label x:Name="lblTotalArea3" HorizontalAlignment="Left" VerticalAlignment="Center" Content="Label" /> <TextBox HorizontalAlignment="Left" VerticalAlignment="Center" Width="100"/> <sdk:Label x:Name="lblTotalArea4" HorizontalAlignment="Left" VerticalAlignment="Center" Content="Label"/> <TextBox HorizontalAlignment="Left" VerticalAlignment="Center" Width="100"/> <sdk:Label x:Name="lblTotalArea5" HorizontalAlignment="Left" VerticalAlignment="Center" Content="Label"/> <TextBox HorizontalAlignment="Left" VerticalAlignment="Center" Width="100"/> <sdk:Label x:Name="lblTotalArea6" HorizontalAlignment="Left" VerticalAlignment="Center" Content="Label" /> <TextBox HorizontalAlignment="Left" VerticalAlignment="Center" Width="100"/> <sdk:Label x:Name="lblTotalArea7" HorizontalAlignment="Left" VerticalAlignment="Center" Content="Label"/> <TextBox HorizontalAlignment="Left" VerticalAlignment="Center" Width="100"/> <sdk:Label x:Name="lblTotalArea8" HorizontalAlignment="Left" VerticalAlignment="Center" Content="Label"/> <TextBox HorizontalAlignment="Left" VerticalAlignment="Center" Width="100"/> <sdk:Label x:Name="lblTotalArea9" HorizontalAlignment="Left" VerticalAlignment="Center" Content="Label"/> <TextBox HorizontalAlignment="Left" VerticalAlignment="Center" Width="100"/> <sdk:Label x:Name="lblTotalArea10" HorizontalAlignment="Left" VerticalAlignment="Center" Content="Label" /> <TextBox HorizontalAlignment="Left" VerticalAlignment="Center" Width="100"/> <sdk:Label x:Name="lblTotalArea11" HorizontalAlignment="Left" VerticalAlignment="Center" Content="Label" /> <TextBox HorizontalAlignment="Left" VerticalAlignment="Center" Width="100"/> <sdk:Label x:Name="lblTotalArea12" HorizontalAlignment="Left" VerticalAlignment="Center" Content="Label" /> <TextBox HorizontalAlignment="Left" VerticalAlignment="Center" Width="100"/> <sdk:Label x:Name="lblTotalArea13" HorizontalAlignment="Left" VerticalAlignment="Center" Content="Label" /> <TextBox HorizontalAlignment="Left" VerticalAlignment="Center" Width="100"/> </StackPanel> </telerik:RadFluidContentControl.LargeContent> </telerik:RadFluidContentControl> </telerik:RadTileViewItem>