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.
(1) How do I get the current record (index) in a grid?
(2) How do I look up a field value in the grid? i.e. I want to see the column 3 (Last Name) for the 4th record.
Thanks,
Dan
ADAdministrator Syncfusion Team August 8, 2005 07:39 PM UTC
What kind of grid are you using? A GridDataBoundGrid or a GridGroupingControl (or a GridControl)?
DCdan carrAugust 8, 2005 07:41 PM UTC
Data Bound grid.
Found:
(Me.grdSecurityDetail.CurrentCell.ColIndex())
and
(Me.grdSecurityDetail.CurrentCell.RowIndex())
to get the coordinates. Need a way to check the value
DCdan carrAugust 8, 2005 07:41 PM UTC
Sorry meant -- GridDataBoundGrid
ADAdministrator Syncfusion Team August 8, 2005 07:52 PM UTC
You can get the at a particular row and col using
Dim val as Object = me.grid(rowIndex, colIndex).CellValue)