Hi,
We need a cell double click event on our pivot in order to get the values on that row and column. Our pivot's sample is attached.
We tried the code block below. But did not work. Can you help about this. Our product version is 2013.1.220.20
We need a cell double click event on our pivot in order to get the values on that row and column. Our pivot's sample is attached.
We tried the code block below. But did not work. Can you help about this. Our product version is 2013.1.220.20
private
void
PivotGridReport_CellCreating(
object
sender, Telerik.WinControls.UI.PivotCellCreatingEventArgs e)
{
e.CellElement.DoubleClick +=
new
EventHandler(CellElement_DoubleClick);
}
void
CellElement_DoubleClick(
object
sender, EventArgs e)
{
}