private void button3_Click(object sender, EventArgs e)
{
dataSource[0] = new Data("CategoryIDnew", "Categorynew", "Descnew") { parameters=new SubDataCollection() {new SubData("anew"), new SubData("bnew"), new SubData("cnew")} };
//Used to update the parent table records
foreach (FieldDescriptor field in this.gridGroupingControl1.TableDescriptor.Fields)
{
field.ForceImmediateSaveValue = true;
}
//Used to update the child table
this.gridGroupingControl1.GetTable("parameters").TableDirty = true; //Child table name
}
Sample:
http://www.syncfusion.com/downloads/support/forum/119427/ze/Modified-binding-list-demo-99025530
Please let me know if you have any concerns.
Regards,
Neelakandan
//Used to update the child table
this.gridGroupingControl1.GetTable("parameters").TableDirty = true;//Specify your needed child table which has been updated
this.gridGroupingControl1.Refresh();
Please let me know if you have any concerns.
Regards,
Neelakandan