column header event

Hi there, Im currently using griddataboundgrid and im wondering if theres any event to catch when a particular column header is clicked ? Thanks, adit

1 Reply

ST stanleyj Syncfusion Team November 3, 2005 06:21 AM UTC

Hi Adit, Try CellClik handler. private void gridDataBoundGrid1_CellClick(object sender, Syncfusion.Windows.Forms.Grid.GridCellClickEventArgs e) { if(e.RowIndex == 0 && e.ColIndex == 1) Console.WriteLine("Clicked at {0},{1}",e.RowIndex , e.ColIndex ); } Best regards, Stanley

Loader.
Up arrow icon