Get current row at which right click was registered. GridGroupingControl

Hi,
 
 
I have a grid and I would like to capture on which row the right click was registered. How can I do that.
 
Thank you

1 Reply

AS Athiram S Syncfusion Team February 8, 2013 07:17 AM UTC

Hi Gaukar,

 

Thanks for your interest in Syncfusion Products.

 

Query:

 

I have a grid and I would like to capture on which row the right click was registered.

 

 

You can make use of “TableControlCellClick” event in order to get the RowIndex where the Right-click is made.

 

Here is the code:

 

void gridGroupingControl1_TableControlCellClick(object sender, GridTableControlCellClickEventArgs e)

{

 

   e.Inner.RowIndex;

}

                                   

 

 

Please let me know if you have any concerns.

 

Regards,
Athiram S


Loader.
Up arrow icon