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.
I use a DataSet->DataView->GridDataBoundGrid chain. Inside CurrentCellChanged event handler I try something like this:
GridDataBoundGrid grid = (GridDataBoundGrid sender;
int rowIdx = grid.CurrentCell.RowIndex;
int colIdx = grid.CurrentCell.ColIndex;
DataRow row = dataView[rowIdx - 1].Row;
string s = row[colIdx - 1].ToString();
I expected s to contain the new text, but it holds just "", ever (while inside the event handler). How to get the subject?
Grateful in advance, Alexey