I have display whether 10 or more records in RadGridView. then i can scroll down. in my functionality click checkBox after that RadGridView itemsource are assigned or refreshed Radgridview fully refreshed. in this situation i need to display previously scroll position.
Ex:
----
this.MedicalNoteHistoryGrid.ScrollIntoViewAsync(this.MedicalNoteHistoryGrid.Items[this.MedicalNoteHistoryGrid.Items.Count - 1],
this.MedicalNoteHistoryGrid.Columns[this.MedicalNoteHistoryGrid.Columns.Count - 1],
new Action<FrameworkElement>((f) =>
{
(f as GridViewRow).IsSelected = true;
}
));
i can try above the code display last index of gridview row. in my functionality how to get the scroll position.
Regards,
Dhanush.
Ex:
----
this.MedicalNoteHistoryGrid.ScrollIntoViewAsync(this.MedicalNoteHistoryGrid.Items[this.MedicalNoteHistoryGrid.Items.Count - 1],
this.MedicalNoteHistoryGrid.Columns[this.MedicalNoteHistoryGrid.Columns.Count - 1],
new Action<FrameworkElement>((f) =>
{
(f as GridViewRow).IsSelected = true;
}
));
i can try above the code display last index of gridview row. in my functionality how to get the scroll position.
Regards,
Dhanush.