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

How capture double click in row header?

Hi Syncfusion Team

How can I capture double click in row header?

Thanks.

Marcio Maciel

1 Reply

AS Ayyanar Sasi Kumar Jeyaraj Syncfusion Team December 28, 2015 12:25 PM UTC

Hi Marcio,

Thanks for contacting Syncfusion support.

You can use CellClick event to listen double click action in RowHeader as in the below code snippet,

C#

this.dataGrid.CellClick += DataGrid_CellClick;


private void DataGrid_CellClick(object sender, GridCellClickEventArgs e)

        {

              if (e.ColumnIndex==0 && e.ClickCount==2)

            {

            }
        }




Please refer the sample from the below location
Sample: http://www.syncfusion.com/downloads/support/forum/121529/ze/Griddatacontrol-666877127
Please let us know if you have any further assistance.

Regards
Ayyanar

Loader.
Live Chat Icon For mobile
Up arrow icon