I working in SL-4 and dll version of telerik is 2011.1.315.1040.
I am using RadGridView where in my first column is frozen.
My issue is that, when I scrolls to last column and changes the page, the text from columns second onwards gets clipped from bottom
side. But, when I moves scrollbar to either side text gets repainted properly.
here is my code:
<
telerik:RadGridView x:Name="WarningManagementDatagrid" CanUserFreezeColumns="False" Grid.Row="1"
AutoGenerateColumns="False" IsFilteringAllowed="False"
CanUserReorderColumns="False" ShowColumnHeaders
ShowGroupPanel="False" SelectionChanged
RowIndicatorVisibility
ItemsSource="{Binding WarningCollection}"
IsReadOnly="True" Width="400" Height
HorizontalAlignment="Left"
AlternateRowBackground="#FFF9F9F9"
AlternationCount="2" FrozenColumnCount
Background="#FFFDFDFD"
BorderBrush="#FF88746A"
Foreground="#FF040404"
VerticalGridLinesBrush="Transparent"
HorizontalGridLinesBrush="#FFECE9E8"
FontFamily
<telerik:RadGridView.Columns>
<telerik:GridViewColumn Width="30">
<telerik:GridViewColumn.CellTemplate>
<DataTemplate>
<Ellipse HorizontalAlignment="Left" Style="{Binding Path=WarningSeverity,Mode=TwoWay,Converter={StaticResource WarningManagementConverter},ConverterParameter
</DataTemplate>
</telerik:GridViewColumn.CellTemplate>
</telerik:GridViewColumn>
<telerik:GridViewDataColumn DataMemberBinding="{Binding WarningMessage
</telerik:RadGridView.Columns>
</telerik:RadGridView>
<telerik:RadDataPager x:Name="UserAccountDataPager" PageIndexChanged="UserAccountDataPager_PageIndexChanged" Grid.Row="2" PageSize="{Binding PageSizeForWarningManagement,Mode=TwoWay}" Source="{Binding Items, ElementName=WarningManagementDatagrid}"
IsTotalItemCountFixed="True" DisplayMode="PreviousNextNumeric" HorizontalContentAlignment="Right" Style="{StaticResource ForgeRadDataPagerStyle
Please, tell me what is problem with my code or suggest any solution