Articles in this section
Category / Section

How to avoid the AddNewRecord row of the nested tables?

1 min read

 

To avoid the AddNewRecord row of the nested tables, first access the nested tables and then have to set the AllowNew property to false.

C#

private void GridGroupingControl1_RecordExpanded(object sender, Syncfusion.Grouping.RecordEventArgs e)

{

foreach(GridNestedTable nt in e.Record.NestedTables)

{

//Set AllowNew property for the nested tables

nt.ChildTable.ParentTableDescriptor.AllowNew = false;

}

}

VB

Private Sub GridGroupingControl1_RecordExpanded(ByVal sender As Object, ByVal e As Syncfusion.Grouping.RecordEventArgs)

For Each nt As GridNestedTable In e.Record.NestedTables

'Set AllowNew property for the nested tables

nt.ChildTable.ParentTableDescriptor.AllowNew = False

Next nt

End Sub

Sample:

http://websamples.syncfusion.com/samples/KB/Grid.Web/6.1.0.34/AddNewRecord/main.htm

Did you find this information helpful?
Yes
No
Help us improve this page
Please provide feedback or comments
Comments (0)
Please sign in to leave a comment
Access denied
Access denied