SR
SubhaSheela R
Syncfusion Team
July 15, 2008 10:55 AM UTC
Hi Gert,
Thanks for your interest in Syncfusion products.
If your intention is to hide the column, then you can handle the QueryColWidth event of GridGrouping Control and set its size to hide it.
Here is the code snippet:
this.gridGroupingControl1.TableModel.QueryColWidth += new GridRowColSizeEventHandler(TableModel_QueryColWidth);
void TableModel_QueryColWidth(object sender, GridRowColSizeEventArgs e)
{
if (e.Index == 1)
{
e.Size = 0;
e.Handled = true;
}
}
Please let me know if it helps.
Regards,
Subhasheela R