The Syncfusion native Blazor components library offers 70+ UI and Data Viz web controls that are responsive and lightweight for building modern web apps.
.NET PDF framework is a high-performance and comprehensive library used to create, read, merge, split, secure, edit, view, and review PDF files in C#/VB.NET.
Hi All.
i have two tables are related. My GDBG is readonly and I add, edit data programmatically. And sometimes
sign "+" disappear and I can''t expand and collapse parent rows.
I do the next:
1. Added Parent row.
2. Clicked on "+".
3. "+" disappeared
4. Added child row to parent that was added above.
5. and "+" did not appear.
And I can''t see my added child row.
Regards, Slava.
ADAdministrator 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
SISilenterMay 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?