AD
Administrator
Syncfusion Team
July 20, 2004 07:24 PM UTC
Try changing summaryGrid to public so you can access it from your form through the summaryRow object. With that change, here is a button handler that completely seems to completely reload a new summaryRow object in the sample from the KB sample.
private void button1_Click(object sender, EventArgs e)
{
this.gridDataBoundGrid1.BeginUpdate();
this.gridDataBoundGrid1.Focus();
this.gridDataBoundGrid1.ResetGridBounds();
this.gridDataBoundGrid1.Controls.Remove(this.sumRow.summaryGrid);
this.sumRow.summaryGrid.Dispose();
this.gridDataBoundGrid1.Refresh();
Form3_Load(sender, e);
this.gridDataBoundGrid1.EndUpdate();
}