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 am trying to set a cell's value in a GridDataBoundGrid. Here is what I am doing, but its not working.
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
rowIndex = currentCell.RowIndex
colIndex = currentCell.ColIndex + 1
Me.GridDataBoundGrid_PtPayments(rowIndex, colIndex).CellValue = "20"
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
The grid and all its cells are already bound to a datatable. Is that causing a problem in changing its data? However there is no data in the cell when I am trying to change it.
I did try the BeginUpdate() and EndUpdate() methods before making changes to the CellValue, in the same method.
Thanks in advance
Jots