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 April 21, 2004 08:32 PM UTC
There are KB''s on locating the DataRow at the current position, but not one on getting the DataRow at an abitrary index. Here is code that I think will locate the DataRow at a given grid row index, say rowIndex.
CurrencyManager cm = (CurrencyManager) this.BindingContext[this.grid.DataSource, this.grid.DataMember];
int pos = this.grid.Binder.RowIndexToPosition(rowIndex);
DataRowView drv = cm.List[pos] as DataRowView;
DataRow dr = drv.Row;