This question is locked. New answers and comments are not allowed.
Hello,
This is my code :-
I have my layout root set to Scrollviewer. Still the RadTileView does not show scrollbar. Notice that i have scrollviewer in 1st item, So it shows for the RadTileView but i need scrollbar for whole page not for the container. How can i show that? I want my RadTileitem to show full grid and the scrollbar should appear normal just as you see with normal html page. I don't want scrollbar for the item itself but i need it at the page level. What changes do i need to make in the existing code :-
This is my code :-
I have my layout root set to Scrollviewer. Still the RadTileView does not show scrollbar. Notice that i have scrollviewer in 1st item, So it shows for the RadTileView but i need scrollbar for whole page not for the container. How can i show that? I want my RadTileitem to show full grid and the scrollbar should appear normal just as you see with normal html page. I don't want scrollbar for the item itself but i need it at the page level. What changes do i need to make in the existing code :-
<UserControl xmlns:d="http://schemas.microsoft.com/expression/blend/2008" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:telerik="http://schemas.telerik.com/2008/xaml/presentation" mc:Ignorable="d" x:Class="RadTileViewDemo.MainPage" d:DesignWidth="640" d:DesignHeight="480"> <ScrollViewer x:Name="LayoutRoot" Background="White"> <Grid> <Grid Margin="0,0,-27,0" Background="Black" Height="156" VerticalAlignment="Top"> <TextBlock HorizontalAlignment="Center" Margin="0" TextWrapping="Wrap" Text="Some content" d:LayoutOverrides="Height" Foreground="White" VerticalAlignment="Center"/> </Grid> <telerik:RadTileView Margin="0,156,-27,-10" MinimizedColumnWidth="100"> <telerik:RadTileViewItem Header="Item 1" Position="0" TileState="Maximized"> <ScrollViewer> <Grid Background="Yellow" Height="700" Width="1500"/> </ScrollViewer> </telerik:RadTileViewItem> <telerik:RadTileViewItem Header="Item 2" TileState="Minimized"/> <telerik:RadTileViewItem Header="Item 3" TileState="Minimized"/> </telerik:RadTileView> </Grid> </ScrollViewer></UserControl>