Hi,
Is there any way to add a record to the child/nested grid when the grid displays data in a hierarchical manner? The AllowAddNew property lets you add a record to the parent/master grid.
Thanks in advance,
Lee
Hello,
All you need to do is set the AddNewRecord property to true and bind the xamDataGrid.
<igDP:XamDataGrid Name="xamDataGrid1" > <igDP:XamDataGrid.FieldLayoutSettings> <igDP:FieldLayoutSettings AddNewRecordLocation="OnTopFixed" AllowAddNew="True"/> </igDP:XamDataGrid.FieldLayoutSettings>
How did you resolve this?
Hey i figured out what was wrong and fixed it.