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 bind datasource (dataset) to control at design-time, after I merge another dataset, changes didn''t appear in control window.
Please tell me how can I update control ?
ADAdministrator Syncfusion Team May 12, 2004 05:33 AM UTC
First try
this.gridGroupingControl1.Refresh()
If that does not do it, try
this.gridGroupingControl1.TableControl.Reinitialize();
ADAdministrator Syncfusion Team May 12, 2004 06:27 AM UTC
The problem appears when I make such binding:
DataSource = dataset1;
DataMember = table1.relation_to_table2;
If I write:
DataSource = dataset1.table2;
DataMember = null;
all is OK.
ADAdministrator Syncfusion Team May 13, 2004 12:14 AM UTC
Is it possible such binding ?
ADAdministrator Syncfusion Team May 13, 2004 05:43 AM UTC