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.
ADAdministrator Syncfusion Team September 15, 2004 05:55 AM UTC
At the bottom of Formload, try
grid.ForceCurrentCellMoveTo = true; //may not be needed
grid.CurrentCell.MoveTo(1,3); //can also set activate options if you want using 3rd parameter
In addition to the above code, depending upon tab orders and parent controls on your form, you may have to make the grid the active control with code like this.ActiveControl = grid or calling grid.Focus() or something of that nature. But if it is just a grid directly on a form, the above is usually sufficient.