Works fine. Thanks!
Sameer
>You can handle the TableControlCellClick event and cancel it if it is the right button.
>
>private void gridGroupingControl1_TableControlCellClick(object sender, GridTableControlCellClickEventArgs e)
>{
> if(e.Inner.MouseEventArgs.Button == MouseButtons.Right)
> e.Inner.Cancel = true;
>}
>