How to add new record in specific DetailsView DataGrid for WPF?
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" }); } } }
Figure 1: Before adding new record in DetailsViewDataGrid
Figure 2: Added new data records in DetailsViewDataGrid
Sample Links:
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 forums, Direct-Trac, or feedback portal. We are always happy to assist you!