Articles in this section
Category / Section

Does the pivot grid support double clicking of cells

1 min read

The pivot grid will support the double clicking of cell through the Click count get from the parameter (RoutedEventArgs). Please refer the following workaround and sample which explains the same.

C#

void pivotGrid1_Loaded(object sender, RoutedEventArgs e)
{
this.pivotGrid1.InternalGrid.CellClick += new Syncfusion.Windows.Controls.Grid.GridCellClickEventHandler(InternalGrid_CellClick);
}
void InternalGrid_CellClick(object sender, Syncfusion.Windows.Controls.Grid.GridCellClickEventArgs e)
{
if (e.ClickCount == 2)
{
MessageBox.Show("RowIndex = "+e.RowIndex.ToString() +"ColumnIndex = "+e.ColumnIndex.ToString());
}
}

 

C:\Users\labuser\Dropbox\Screenshots\Screenshot 2014-06-05 12.06.29.png

Figure: Pivot Grid shows double cell click event with a pop up window

 

 

Did you find this information helpful?
Yes
No
Help us improve this page
Please provide feedback or comments
Comments (0)
Please sign in to leave a comment
Access denied
Access denied