Is there any event if click happens on particular cell in the grid
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); }; |