The Syncfusion native Blazor components library offers 70+ UI and Data Viz web controls that are responsive and lightweight for building modern web apps.
.NET PDF framework is a high-performance and comprehensive library used to create, read, merge, split, secure, edit, view, and review PDF files in C#/VB.NET.
Hi,
In my grid I have hundreds or rows, and if scroll down to bottom of grid. Once modify the some cells. I refresh my grid using “Refresh Method.” The only problem is that it does scroll back to 1st row. I need my grid to scroll back to first row.
Please help me.
VS
ADAdministrator Syncfusion Team May 6, 2005 04:23 PM UTC
You can make the grid scroll to the beginning by setting:
grid.TopRowIndex = 1; // or grid.Model.Rows.HeaderCount + 1 if you are using muliple header rows.