AD
Administrator
Syncfusion Team
December 18, 2006 08:50 AM UTC
Hi Mgs4solidsnake,
This can be achieved by handling the TableControlCellClick event and check for the table name by using e.TableControl.TableDescriptor.Name property. Please try the following code snippet and let us know if you need any further assistance.
>>>>>>>>>>>>>>>>>>>>>
//this.gridGroupingControl1.TableControlCellClick +=new GridTableControlCellClickEventHandler(gridGroupingControl1_TableControlCellClick);
private void gridGroupingControl1_TableControlCellClick(object sender, GridTableControlCellClickEventArgs e)
{
if(e.TableControl.TableDescriptor.Name == "B")
Console.WriteLine(e.TableControl.Table.CurrentRecord);
}
>>>>>>>>>>>>>>>>>>>>>
Have a nice day.
Best regards,
Madhan