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.
When my grid gets the focus I want to pass it on to the currentcell. How do I do this?
Something like:
m_MyGrid.CurrentCell.Select();
or
m_MyGrid.CurrentCell.Activate();
Thanks!
ADAdministrator Syncfusion Team September 10, 2004 05:24 AM UTC
If the currentcell is already at the proper row/col, you can call
grid.CurrentCell.BeginEdit();
If you need to move the currentcell and activate it, you can use
grid.CurrentCell.MoveTo(row, col, GridSetCurrentCellOptions.SetFocus);