Hello Telerik,
I am facing an issue with telerik gridview. The Last row of the gridview is getting chopped when I try to resize the column and the Font-Family of the Row or the Gridview is set to 'Arial'.
I am using the telerik dll version :- 2012.2.0607.40.
Attached is the screenshot of the issue.
Can you please advice how to resolve this issue?
Thanks,
Neha
I am facing an issue with telerik gridview. The Last row of the gridview is getting chopped when I try to resize the column and the Font-Family of the Row or the Gridview is set to 'Arial'.
I am using the telerik dll version :- 2012.2.0607.40.
Attached is the screenshot of the issue.
<Window xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:telerikData="clr-namespace:Telerik.Windows.Data;assembly=Telerik.Windows.Data" xmlns:telerikGridView="http://schemas.telerik.com/2008/xaml/presentation" xmlns:telerikNavigation="clr-namespace:Telerik.Windows.Controls;assembly=Telerik.Windows.Controls.Navigation" xmlns:telerikInput="clr-namespace:Telerik.Windows.Controls;assembly=Telerik.Windows.Controls.Input" xmlns:telerikGrid="clr-namespace:Telerik.Windows.Controls.GridView;assembly=Telerik.Windows.Controls.GridView" xmlns:System="clr-namespace:System;assembly=mscorlib" xmlns:Telerik_Windows_Controls_Chromes="clr-namespace:Telerik.Windows.Controls.Chromes;assembly=Telerik.Windows.Controls" xmlns:Microsoft_Windows_Themes="clr-namespace:Microsoft.Windows.Themes;assembly=PresentationFramework.Aero" xmlns:local="clr-namespace:WpfApplication1" xmlns:Telerik_Windows_Controls_Animation="clr-namespace:Telerik.Windows.Controls.Animation;assembly=Telerik.Windows.Controls.Navigation" x:Class="WpfApplication1.MainWindow" x:Name="Window" WindowStartupLocation="CenterOwner" xmlns:telerik="clr-namespace:Telerik.Windows.Controls;assembly=Telerik.Windows.Controls" Title="MainWindow" Width="640" Height="480"> <Grid x:Name="LayoutRoot"> <ScrollViewer > <telerikGridView:RadGridView x:Name="dataGrid1" IsReadOnly="True" IsFilteringAllowed="True" ShowGroupPanel="False" ItemsSource="{Binding}" AutoGenerateColumns="False" SelectionMode="Single" RowIndicatorVisibility="Collapsed" ScrollMode="RealTime" DataLoadMode="Asynchronous" EnableRowVirtualization="True" EnableColumnVirtualization="True" RowDetailsVisibilityMode="VisibleWhenSelected" ShowColumnFooters="False" GridLinesVisibility="Horizontal" Height="410" FontFamily="Arial"> <telerikGridView:RadGridView.Columns> <telerikGridView:GridViewDataColumn Header="CaseSeq" UniqueName="CaseSeq" IsVisible="False" DataMemberBinding="{Binding CaseSeq}" /> <telerikGridView:GridViewDataColumn Header="Days Remaining" UniqueName="DaysRemaining" DataMemberBinding="{Binding ProbationDaysRemaining}" /> <telerikGridView:GridViewDataColumn Header="Case Name" UniqueName= "CaseName" DataMemberBinding="{Binding CaseName}" TextWrapping="Wrap"/> <telerikGridView:GridViewDataColumn Header="CS Balance" UniqueName="CSBalance" DataMemberBinding="{Binding CSBalance}"/> <telerikGridView:GridViewDataColumn Header="Case Text" UniqueName="CaseText" DataMemberBinding="{Binding CaseText}" /> <telerikGridView:GridViewDataColumn Header="Balance" UniqueName="Balance" DataMemberBinding="{Binding Balance}" DataFormatString="{}{0:C}" TextAlignment="Right" HeaderTextAlignment="Right"/> </telerikGridView:RadGridView.Columns> </telerikGridView:RadGridView> </ScrollViewer> </Grid></Window>Can you please advice how to resolve this issue?
Thanks,
Neha