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.
RRRajapandi Ravi Syncfusion Team March 17, 2023 01:37 PM UTC
Hi Rob,
Greetings from Syncfusion support
You can get the row data for the specific row by using our
Grid’s inbuilt methods. To get the specific rowData 1st you need to
get the row element by using the getRowByIndex(0) and after that you
need to pass the tr element to the getRowInfo() method of Grid. Please
refer the below code example and sample for more information.
var rowElement =
grid.getRowByIndex(0); //pass the specific
row index to get the row
var
rowData = grid.getRowInfo(rowElement).rowData
//pass the tr element to get the rowData