This question is locked. New answers and comments are not allowed.
Hello I use GridView with MVVM and I want the gridView automaticly scroll to the row selected.
I am binded on SelectedItem:
In ViewModel I preselect an item who was at the bottom of the grid. So when I display the gridView we have the row selected but it is not visible I must scoll to see it.
So I want the gridwiew automaticly scroll to to the row selected.
An idea to make that?
I am binded on SelectedItem:
<
telerik:RadGridView
Margin
=
"5"
AutoGenerateColumns
=
"False"
x:Name
=
"_radGridView"
DataLoadMode
=
"Asynchronous"
IsReadOnly
=
"True"
SelectedItem
=
"{Binding SelectedItem,Mode=TwoWay}"
ItemsSource
=
"{Binding Path=Items}"
/>
In ViewModel I preselect an item who was at the bottom of the grid. So when I display the gridView we have the row selected but it is not visible I must scoll to see it.
So I want the gridwiew automaticly scroll to to the row selected.
An idea to make that?