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 have a populated GridDataBoundGrid.
How can select a row ?
This is used when I open the window and the grid is populated. When the grid is shown to the user, I want the grid to have already a selected row. The selected row can be the first row, or any other. (my grid selects the intire row when I click on it).
Thanks a lot,
Jose Melo
ADAdministrator Syncfusion Team January 28, 2004 09:15 AM
In your formload, try adding code like
this.grid.ForceCurrentCellMoveTo = true;
this.grid.CurrentCell.MoveTo(1,1);// or some other cell
If the grid is not the active control, you might also want to set this.ActiveControl = this.grid if you want it to be the active one.