Articles in this section
Category / Section

How to add new record in specific DetailsView DataGrid for WPF?

3 mins read

You can add new records to DetailsViewDataGrid by adding items to underlying collection like you are doing for SfDataGrid.

 

In the below use case, new records will be added in selected DetailsViewDataGrid and SelectedItem record’s DetailsViewDataGrid.

 

In the below code snippet, Button bound to command in ViewModel to add new records to SelectedItem’s DetailsViewDataGrid.

 

XAML

<Syncfusion:SfDataGrid x:Name="datagrid"
                        Grid.Column="0"
                        AllowEditing="True"
                        AutoGenerateRelations="True"
                        ItemsSource="{Binding OrderInfoCollection}"
                        LiveDataUpdateMode="AllowDataShaping"
                        NavigationMode="Cell" />
 
<Button Grid.Column="1"
        Width="150"
        Height="50"
        VerticalAlignment="Top"
        Command="{Binding Path=RowDataCommand}"
        CommandParameter="{Binding ElementName=datagrid,
                                    Path=SelectedItem}"
        Content="AddNewRecord" />

 

C#

public class ViewModel
{
 . . . . . 
private ICommand rowDataCommand { get; set; }
public ICommand RowDataCommand
{
    get
    {
        return rowDataCommand;
    }
    set
    {
        rowDataCommand = value;
    }
}
 
public void AddNewRecord(object obj)
{
    var customerDetails = obj as OrderInfo;
    if (customerDetails != null)
    {
        var index = orderCollection.IndexOf(customerDetails);
        if (customerDetails.ProductDetails == null)
        {
            customerDetails.ProductDetails = new ObservableCollection<ProductInfo>();
            customerDetails.ProductDetails.Add(new ProductInfo() { OrderID = 1002, ProductName = "HeadSet", ProductID = "ERTY" });
        }
        else
            customerDetails.ProductDetails.Insert(0, new ProductInfo() { OrderID = 1002, ProductName = "KeyBoard", ProductID = "AZYP" });
    }
  }
}

 

Before adding new record in DetailsViewDataGrid

Figure 1: Before adding new record in DetailsViewDataGrid

Added new data records in DetailsViewDataGrid

Figure 2: Added new data records in DetailsViewDataGrid

Sample Links:

WPF

WinRT

UWP

 

Conclusion

I hope you enjoyed learning about how to add new record in specific DetailsView DataGrid for WPF.

You can refer to our WPF DataGrid feature tour page to know about its other groundbreaking feature representations and documentation, and how to quickly get started for configuration specifications. You can also explore our WPF DataGrid example to understand how to create and manipulate data.

For current customers, you can check out our components from the License and Downloads page. If you are new to Syncfusion, you can try our 30-day free trial to check out our other controls.

If you have any queries or require clarifications, please let us know in the comments section below. You can also contact us through our support forumsDirect-Trac, or feedback portal. We are always happy to assist you!

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