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.
Up arrow icon