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.
Got the Answer. I am using following code to set the focus:
gridAlarmDetails.Selections.Clear();
gridAlarmDetails.Selections.Add(Syncfusion.Windows.Forms.Grid.GridRangeInfo.Row(RowIndex));
gridAlarmDetails.CurrentCell.Deactivate(false);
gridAlarmDetails.CurrentCell.Activate(RowIndex, ColumnIndex+1);
gridAlarmDetails.Refresh();
Regards,
Rajiv
>Hi,
>
>I am using Databound Essetail grid. I want to now how can i set focus(or select) to a row in grid dynamically.
>
>Thanks and Regards,
>Rajiv
ADAdministrator Syncfusion Team April 5, 2004 08:04 AM UTC
You might try calling grid.CurrentCell.MoveTo. This deactivates the old current cell and activates the new currentcell all in one call.