Hi Paurnima,
Thank you for your interest in Syncfusion products.
If you want to remove the child table, you can use Relations property. By using this
property you can use Remove() method or
RemoveAt() method. Please refer the attached sample and video file.
Please refer the
below code:
private void
buttonAdv1_Click(object sender, EventArgs e)
{
int count = this.gridGroupingControl1.TableDescriptor.Relations.Count;
for (int i =
count-1; i >= 2; i--)
this.gridGroupingControl1.TableDescriptor.Relations.RemoveAt(i);
//Specify your needed Child table.
}
Please let me know if you have any concerns.
Regards,
Neelakandan
Attachment:
Sample_And_Video_6b7e3c8d.zip