We use cookies to give you the best experience on our website. If you continue to browse, then you agree to our privacy policy and cookie policy. Image for the cookie policy date
close icon

GridHeader click event

Hi,

In a Syncfusion grid header,when I right click i want to display a menu.

I dont find any header click event in Syncfusion grid.how to proceed?

pls hsuggest me a idea.

Regards,

Dhana

1 Reply

AD Administrator Syncfusion Team March 2, 2007 12:15 AM UTC

Hi Dhana,

One way you can do this by handling the MouseDown event of the grid and show the context menu when the header is clicked. Please refer to the attached sample for implementation and let me know if this helps.

[C#]
private void gridControl1_MouseDown(object sender, MouseEventArgs e) // Enters on Mouse Click Down
{
if (e.Button == MouseButtons.Right)
{
GridControl grid = sender as GridControl;
int row, col;
grid.PointToRowCol(e.Location, out row, out col);
if (row != -1 && col != -1)
{
if( grid.Model[row,col].CellType == "Header")
this.contextMenu1.Show(this.gridControl1, e.Location);
}
}
}

Sample : http://websamples.syncfusion.com/samples/Grid.Windows/F57308/main.htm

Best Regards,
S.Shyam.

Loader.
Live Chat Icon For mobile
Up arrow icon