AD
Administrator
Syncfusion Team
May 17, 2004 12:02 PM UTC
This thread discusses how you might add a row to an empty child table.
http://www.syncfusion.com/Support/Forums/message.aspx?MessageID=13894
SI
Silenter
May 18, 2004 04:58 AM UTC
Hi,
As I think, You propose me to rebind grid every time when I Add new row to the childtable like this:
private void RebindGrid()
{
object ds = grdData.DataSource;
String dataMember = grdData.DataMember;
this.grdData.BeginUpdate();
grdData.DataSource = null;
grdData.DataMember = String.Empty;
grdData.DataSource = ds;
grdData.DataMember = dataMember;
this.grdData.EndUpdate();
grdData.Refresh();
}
And is it all for "+" appear ????????
I don''t think that it is a good way.
May be is there more civilized way?