This question is locked. New answers and comments are not allowed.
<TelerikGrid:RadGridView x:Name="segmentView" AutoGenerateColumns="False" CanUserSelect="False" TabNavigation="Once" IsTabStop="True" CanUserDeleteRows="False" ScrollMode="RealTime" CanUserFreezeColumns="False" CanUserInsertRows="False" CanUserReorderColumns="False" CanUserResizeColumns="True" CanUserSortColumns="False" ShowColumnFooters="False" ShowGroupFooters="False" ShowGroupPanel="False" ShowInsertRow="False" IsFilteringAllowed="False" RowIndicatorVisibility="Collapsed" IsReadOnly="True" IsSynchronizedWithCurrentItem="False" AlternateRowBackground="#E5EFFA" AlternationCount="2" EnableRowVirtualization="True" IsScrolling="True" CellEditEnded="segmentView_CellEditEnded" BeginningEdit="segmentView_BeginningEdit" CurrentCellChanged="segmentView_CurrentCellChanged" SelectedCellsChanged="segmentView_SelectedCellsChanged"><!--Changed by Tyler for Spell Check--> <TelerikGrid:RadGridView.Columns> <local:SegmentNotifyColumn Header="Status " Width="130"/> <local:SourceSegmentColumn Header="Source" DataMemberBinding="{Binding SourceText}" Width="*" /> <local:SegmentInfoColumn Header="Match" DataMemberBinding="{Binding SegCharacteristics}" Width="75" /> <local:TargetSegmentColumn Header="Translation" DataMemberBinding="{Binding TargetText}" Width="*" /> </TelerikGrid:RadGridView.Columns> </TelerikGrid:RadGridView> </Grid> <Grid Grid.Row="1"> <StackPanel Orientation="Horizontal"> <TextBlock Text="Segments Per Page " Margin="5,5,5,5" HorizontalAlignment="Left" /> <telerik:RadComboBox Grid.Row="1" Name="segPerPageCB" Height="10" SelectionChanged="segPerPageCB_SelectionChanged" Width="52" HorizontalAlignment="Left" /> </StackPanel> <TelerikData:RadDataPager Grid.Row="1" x:Name="dataPager" PageSize="50" DisplayMode="All" HorizontalAlignment="Right" /> <controlsToolkit:BusyIndicator Grid.RowSpan="1" x:Name="MyBusyIndicator" IsBusy="False" Visibility="Collapsed" /> </Grid>I have a telerik gridview in my silverligt application.I am facing a probelm When I write some text in Cell of grid and height of cell is increased but scroll bar of grid is not automatically coming down by which text of cell hides .When we scroll manually then text is visible.
Can you please help me how to set scroll position when cell increased then scroll bar should come down automatically.
Please help me out.
I have attached ScreenShot.
I am waiting for your reply.
With Thanks,
Vinit