SR
Sri Rajan
Syncfusion Team
July 23, 2008 01:55 PM UTC
Hi Shek,
Thank you for your interest in Syncfusion products.
Here is the code to handle user clicks on column button in the group drop area.
this.gridGroupingControl1.GridGroupDropArea.CellClick += new GridCellClickEventHandler(GridGroupDropArea_CellClick);
void GridGroupDropArea_CellClick(object sender, GridCellClickEventArgs e)
{
if (this.gridGroupingControl1.GridGroupDropArea.Model[e.RowIndex, e.ColIndex].CellType == "ColumnHeaderCell")
{
Console.WriteLine("Button Clicked");
}
}
Please try this and let me know if this helps.
Best Regards,
Srirajan.