AD
Administrator
Syncfusion Team
March 7, 2007 03:43 PM UTC
Hi,
To detect the column width changes in a GroupingGrid, you need to handle the ColWidthsChanged event of the GridTable. Please find the code below.
this.gridGroupingControl1.TableModel.ColWidthsChanged +=new GridRowColSizeChangedEventHandler(TableModel_ColWidthsChanged);
private void TableModel_ColWidthsChanged(object sender, GridRowColSizeChangedEventArgs e)
{
Console.WriteLine( e.From +":::" + e.To +" ===>" + e.SavedValues[0]);
}
Best regards,
Haneef