This is a migrated thread and some comments may be shown as answers.

Grid won't scroll

1 Answer 99 Views
GridView
This is a migrated thread and some comments may be shown as answers.
Richard Averett
Top achievements
Rank 1
Richard Averett asked on 14 Nov 2013, 11:51 PM
I have tried everything I can think of and I can't get the grid to scroll when it has more records than the size will display. Here is the XAML code that I have:


<Window
        xmlns:telerik="http://schemas.telerik.com/2008/xaml/presentation" x:Class="xxx.MainWindow"
        Title="MainWindow" Height="716.724" Width="878.584">
 
 
 
        <Grid>
        <Grid.RowDefinitions>
            <RowDefinition Height="60"/>
            <RowDefinition Height="*"/>
        </Grid.RowDefinitions>          
            
         
        <telerik:GridViewDataControl
            Name="Grid"
            ItemsSource="{Binding Items}"           
            Grid.Row="1"        
            ShowGroupPanel="False"
            AutoGenerateColumns="False">
 
                        
             
            <telerik:GridViewDataControl.Columns>
                <telerik:GridViewDataColumn DataMemberBinding="{Binding ISCI}" Header="ISCI" UniqueName="ISCI" />
                <telerik:GridViewDataColumn DataMemberBinding="{Binding CallLetters}" Header="Call Letters" UniqueName="CallLetters" />
                <telerik:GridViewDataColumn DataMemberBinding="{Binding OrderTracking}" Header="OrderTracking" UniqueName="Order Tracking" />
                <telerik:GridViewDataColumn DataMemberBinding="{Binding Mft_Priority}" Header="Priority" UniqueName="Priority" />
                <telerik:GridViewCheckBoxColumn AutoSelectOnEdit="True" EditTriggers="CellClick" DataContext="{Binding SetTopPriority, Mode=TwoWay}" Header="Bump" UniqueName="SetTopPriority"/>
 
            </telerik:GridViewDataControl.Columns>
 
        </telerik:GridViewDataControl>
         

    </Grid>
</Window>

1 Answer, 1 is accepted

Sort by
0
Yoan
Telerik team
answered on 19 Nov 2013, 11:25 AM
Hello Richard,

You can use RadGridView instead GridViewDataControl. 

I hope this helps.

Regards,
Yoan
Telerik
TRY TELERIK'S NEWEST PRODUCT - EQATEC APPLICATION ANALYTICS for WPF.
Learn what features your users use (or don't use) in your application. Know your audience. Target it better. Develop wisely.
Sign up for Free application insights >>
Tags
GridView
Asked by
Richard Averett
Top achievements
Rank 1
Answers by
Yoan
Telerik team
Share this question
or