Please refer to the attached sample project and the follow the steps in the gif file.
Workaround: scroll to the top and then to the bottom again to update the scrollbar's range
Hello,
There is an issue with the logic in the DoWork event. Not all of the rows are iterated and that is why the last row does not get navigated. The event handler could be changed this way:
private void backgroundWorker1_DoWork(object sender, DoWorkEventArgs e)
{
for (var i = _index; i < this.radGridView1.Rows.Count; i++)
{
_index = i;
Thread.Sleep(50);
backgroundWorker1.ReportProgress(i);
}
}
Regards,
Dimitar
Progress Telerik