I have still a problems with sfDataGrid after change DataSource.
I fond a topic from 2007 https://www.syncfusion.com/forums/62003/refresh-grid-content-after-changing-datasource but it don´t working any more ;-)
So here my question: how I can completly reset a DataGrid to "zero status"
I try it with:
dGrid.DataSource = null;
dGrid.Refresh();
so was ok... BUT if I using
dGrid.ShowBusyIndicator = true;
on the line
dGrid.Add(new GroupColumnDescription() { ColumnName = "DispayStatus" });
come error:
GroupColumnDescription already exist in DataGrid.GroupColumnDescriptions
I try also clear that (before Refresh) with:
dGrid.GroupColumnDescriptions.Clear();
but become error:
The object reference was not set to an object instance
Do you have some new update for this issue? Thanks