Hey,I have a datagrid that has a data source from an identity task. Within the datagrid, I have a row details template with another data grid nested there. The nested data grid data source is from a query task to a service. The problem is that I cannot seem to bind to the nested datagrid in the code behind, and when I try to bind to it in the xaml, nothing happens.Here is the xaml, and the _FSUnit is defined in the code behind as a public FeatureSet<sdk:DataGrid x:Name="UnitDataGrid" AutoGenerateColumns="False" Background="White" ItemsSource="{Binding _FSUnit.features}"
IsReadOnly="True" HorizontalAlignment="Center" VerticalAlignment="Bottom" HeadersVisibility="Column"
ColumnWidth="SizeToCells" HorizontalContentAlignment="Stretch" >
In the ExecuteCompleted method, I put_FSUnit = e.FeatureSet;
I have tried a few combinations of things and the data is correct in the first datagrid, but when I click on the row, none of the binding seems to work. When I step through the code, I can see the correct data within the featureSet, but can't retrieve it.Any ideas?Thanks, Chris