BoldSignEasily embed eSignatures in your .NET applications. Free sandbox with native SDK available.
private void OnRefreshButtonClick(object sender, System.EventArgs e)
{
this.sfDataGrid.DataSource = null;
this.sfDataGrid.DataSource = data.OrdersListDetails;
this.sfDataGrid.ClearGrouping();
this.sfDataGrid.ClearSorting();
this.sfDataGrid.ClearFilters();
this.sfDataGrid.TableSummaryRows.Clear();
this.sfDataGrid.GroupSummaryRows.Clear();
this.sfDataGrid.GroupColumnDescriptions.Add(
new Syncfusion.WinForms.DataGrid.GroupColumnDescription()
{
ColumnName = "OrderID"
});
} |