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.
Hello,
With a GDBG(V2.1.0.9) bound to a DataTable.
I have updated the DataSource (new dataTable with different structure) after having moved some columns.
The new columns aren''t visible, the old ones are still visible and empty.
gridDataBoundGrid1.DataSource = null;
gridDataBoundGrid1.DataMember = null;
gridDataBoundGrid1.Model.ResetVolatileData();
gridDataBoundGrid1.DataSource = newTable;
gridDataBoundGrid1.Refresh();
What can I do to reset the grid before changing the DataSource?