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,
I am having Databound Grid. I am bounding the grid with datasource in the form load. but some times, grid automatically selects the first row by default and some times not?
Any idea why is this behaviour?
Many thx
Ram
ADAdministrator Syncfusion Team April 29, 2003 07:55 PM UTC
I would think that in the same program, things would work consistently one way or the other.
You can force the current cell to cell 1,1 with code like this in formload.
grid.ForceCurrentCellMoveTo = true;
grid.CurrentCell.MoveTo(1,1);