Hi all,
Is there a way to get the clicked cell (double click) with 2013-3 version?
In the previous versions and internal builds (since one or two month ago) I was able to get clicked cell with this code:
then with cell object I was able to read properties such MDX coordinates to open for example a drill down data window.
Now if I try this code the cell variable is null. How can I get clicked cell and then MDX coordinates? Is it possible?
Many thanks in advance!
Best Regards,
Davide
Is there a way to get the clicked cell (double click) with 2013-3 version?
In the previous versions and internal builds (since one or two month ago) I was able to get clicked cell with this code:
private
void
pivot_MouseDown(
object
sender, MouseButtonEventArgs e)
{
if
(e.ClickCount == 2)
{
RadPivotGrid p = sender
as
RadPivotGrid;
FrameworkElement cell = e.OriginalSource
as
FrameworkElement;
then with cell object I was able to read properties such MDX coordinates to open for example a drill down data window.
Now if I try this code the cell variable is null. How can I get clicked cell and then MDX coordinates? Is it possible?
Many thanks in advance!
Best Regards,
Davide