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 add a new row to the data grid programmatically, but I keep getting the error:
"Object reference not set to an instance of an object."
I have tried using:
grid[1,1].Text = "something";
and
grid.CurrentCell.MoveTo(1,1);
grid.CurrentCell.Renderer.ControlText = "xxx";
In the help I found the GridRowCollection, but I couldn''t find any examples on how to use it. I''m not sure where else to look.
Any ideas?