This question is locked. New answers and comments are not allowed.
Hello guys,
I want to reset the scroll position (after manual scroll down) of a RadGridview after rebinding the grid (pagedCollectionView) with new data.
I have an on demand RadDataPager and when fetching the results (from a service) of the next page, the RadGridview scroll position remains the same. I would like the vertical scroll bar to be back at the top.
I might use ScrollIntoView but I get the exception (parameter count mismatch).
Is there any working solution or am I missing something.
Thanks in advance
I want to reset the scroll position (after manual scroll down) of a RadGridview after rebinding the grid (pagedCollectionView) with new data.
I have an on demand RadDataPager and when fetching the results (from a service) of the next page, the RadGridview scroll position remains the same. I would like the vertical scroll bar to be back at the top.
I might use ScrollIntoView but I get the exception (parameter count mismatch).
pagedCollection = retrievedData;
pagedCollection.MoveCurrentToFirst();grv.ScrollIntoView(pagedCollection.CurrentItem, grv.Columns[0]);Is there any working solution or am I missing something.
Thanks in advance