Hi
I've beentrying to get a listview to bind the data in a data grid. The scenario is. For each row in the datagrid I must bind a new list of items. These items are contained as a list within each row of data as bound fron a collection I create within the application.

I've defined my my column as follows(last try):

<dgataGridTemplateColumn Header="Fournisseur" Width="225" MinWidth="50">
<dgataGridTemplateColumn.CellTemplate>
<DataTemplate>
<ListView x:Name="lstFournisseur" IsSynchronizedWithCurrentItem="True" ItemsSource="{Binding LstFournisseurPieceSoumission}" Height="95" Margin="129,151,43,0" VerticalAlignment="Top">
<ListView.ItemTemplate>
<DataTemplate>
<StackPanel Orientation="Horizontal">
<CheckBox x:Name="chkFournisseurChecked" IsChecked="{Binding FournisseurSelectionne}" />
<Label> </Label>
<TextBlock x:Name="txtNomFournisseur" Text="{Binding NomFournisseur}" />
<TextBlock x:Name="txtFournisseurID" Visibility="Hidden" Text="{Binding IdFournisseur}" />
</StackPanel>
</DataTemplate>
</ListView.ItemTemplate>
</ListView>
</DataTemplate>
</dgataGridTemplateColumn.CellTemplate>
</dgataGridTemplateColumn>


The names of the items are all correct and I've tried all different kinds of combinations. The only thing I'm sure of at this point is that there is indeed data in my list. Has anybody actully done this or am I out to lunch on what I want to do. Any guidance would great

Thanks
Rob