Articles in this section
Category / Section

Is there any event if click happens on particular cell in the grid

1 min read

It can be achieved by tagging Cell Click event through Internal Grid in Pivot grid control. Please find the code snippet for the same.

C#

this.pivotGridControl1.InternalGrid.CellClick += (s, args) =>

            {

             MessageBox.Show("Row: " + args.RowIndex + ", Col: " + args.ColumnIndex);

            };

 

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