Hello All
I have a DataGrid Named dg1 that has RowDetailsTemplate
in RowDetailsTemplate I have another DataGrid named dg1Det.
this DataGrid (dg1Det) binds to dg1 this means that by changing row in dg1 ItemsSource of dg1Det must have a new value
so in LoadingRowDetails I cannot bind these two datagrids because dg1 is not Selected
my code for bind is as below
DataGrid dg = e.DetailsElement.FindName("dg1Det")asDataGrid;
dg.ItemsSource = ......
Regards