Hello telerik team
I have a question:
I am using your RadGridView with a RadDataPager. I am wondering if vertical scolling is still possible if the data is paged? The problem occurs when i am resizing the window ... The size of the RadGridView is kind of fixed now.
Can you help me solving this issue?
Here my code:
I have a question:
I am using your RadGridView with a RadDataPager. I am wondering if vertical scolling is still possible if the data is paged? The problem occurs when i am resizing the window ... The size of the RadGridView is kind of fixed now.
Can you help me solving this issue?
Here my code:
<telerik:RadGridView x:Name="DataGrid" ItemsSource="{Binding PagedSource, ElementName=radDataPager}" SelectedItem="{Binding MandantOverviewSelected}" AutoGenerateColumns="False" GridLinesVisibility="None" CanUserDeleteRows="False" CanUserInsertRows="False" IsReadOnly="True" CanUserSortColumns="True" ShowGroupPanel="True" AlternationCount="2" ShowColumnHeaders="True" RowIndicatorVisibility="Collapsed" CanUserFreezeColumns="False" FontSize="11" VerticalAlignment="Stretch"> <telerik:RadGridView.Columns> <telerik:GridViewDataColumn DataMemberBinding="{Binding MandantNummer}" Header="{x:Static LocalResources:ResSystemKonfigurationMandanten.Mandanten_ColumnTitle_MandantNummer}" DataType="{x:Type System:String}" Width="25*"/> <telerik:GridViewDataColumn DataMemberBinding="{Binding Bezeichnung}" Header="{x:Static LocalResources:ResSystemKonfigurationMandanten.Mandanten_ColumnTitle_Bezeichnung}" DataType="{x:Type System:String}" Width="25*" /> <telerik:GridViewDataColumn DataMemberBinding="{Binding Typ}" Header="{x:Static LocalResources:ResSystemKonfigurationMandanten.Mandanten_ColumnTitle_Typ}" DataType="{x:Type System:String}" Width="25*" /> <telerik:GridViewDataColumn DataMemberBinding="{Binding DefaultspracheText}" Header="{x:Static LocalResources:ResSystemKonfigurationMandanten.Mandanten_ColumnTitle_Defaultsprache}" DataType="{x:Type System:String}" Width="25*" /> </telerik:RadGridView.Columns> </telerik:RadGridView><telerikGrid:RadDataPager x:Name="radDataPager" PageSize="10" IsTotalItemCountFixed="True" DisplayMode="FirstLastPreviousNextNumeric" Source="{Binding MandantOverviewList}"/> </StackPanel>