This question is locked. New answers and comments are not allowed.
                        
                        Hi!
When I enclose the Rad Grid View in the scroll viewer, if you shrink the brower window, the vertical scroll bar gets invisible and have to use horizontal scroll bar to see it. Please see attached jpeg and code example -
                                When I enclose the Rad Grid View in the scroll viewer, if you shrink the brower window, the vertical scroll bar gets invisible and have to use horizontal scroll bar to see it. Please see attached jpeg and code example -
<ScrollViewer HorizontalScrollBarVisibility="Auto" VerticalScrollBarVisibility="Auto">     <Grid x:Name="LayoutRoot" DataContext="{StaticResource MyViewModel}">         <Grid.ColumnDefinitions>             <ColumnDefinition Width="*"/>         </Grid.ColumnDefinitions>         <Grid.RowDefinitions>             <RowDefinition Height="200" MinHeight="40"/>             <RowDefinition Height="Auto"/>             <RowDefinition Height="*"/>         </Grid.RowDefinitions>         <Grid Grid.Row="0">             <Grid.RowDefinitions>                 <RowDefinition Height="*"/>                 <RowDefinition Height="Auto"/>             </Grid.RowDefinitions>             <telerikGridViewControls:RadGridView Grid.Row="0"                          ItemsSource="{Binding Players}"                         AutoGenerateColumns="False" ShowGroupPanel="False"                          >                 <telerikGridViewControls:RadGridView.Columns>                     <telerikGridViewControls:GridViewDataColumn DataMemberBinding="{Binding Name}"/>                     <telerikGridViewControls:GridViewDataColumn DataMemberBinding="{Binding Number}"/>                     <telerikGridViewControls:GridViewDataColumn DataMemberBinding="{Binding Country}"/>                 </telerikGridViewControls:RadGridView.Columns>             </telerikGridViewControls:RadGridView>             <TextBox Grid.Row="1" Text="Action View" Visibility="Collapsed"/>         </Grid>         <controls:GridSplitter x:Name="HorizontalGrdSplitter" Grid.Row="1" Height="5" HorizontalAlignment="Stretch"                               VerticalAlignment="Top" Background ="DarkGray"/>         <Grid Grid.Row="2">             <Grid.RowDefinitions>                 <RowDefinition Height="200"/>                 <RowDefinition Height="200"/>             </Grid.RowDefinitions>             <TextBox Grid.Row="0" Text="hello 1"/>             <TextBox Grid.Row="1" Text="hello 2"/>         </Grid>     </Grid> </ScrollViewer>          