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 ?
AD
Administrator
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();
AD
Administrator
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.
AD
Administrator
Syncfusion Team
May 13, 2004 12:14 AM UTC
Is it possible such binding ?
AD
Administrator
Syncfusion Team
May 13, 2004 05:43 AM UTC
Try
DataSource = table1;
DataMember = relation_to_table2;