This question is locked. New answers and comments are not allowed.
Hello,
I have a grid that im trying to bind to a collection of customer objects. Each customer object contains a PrimaryAddress object. I would like to bind several of the grid columns to the PrimaryAddress object's fields as demonstrated below but it doesn't work.
<Grid:DataGridDateColumn HeaderStyle="{StaticResource HeaderStyle}" PropertyName="DisplayName" Header="Customer"/>
<Grid:DataGridDateColumn HeaderStyle="{StaticResource HeaderStyle}" PropertyName="PrimaryAddress.Address" Header="Address"/>
<Grid:DataGridDateColumn HeaderStyle="{StaticResource HeaderStyle}" PropertyName="PrimaryAddress.City" Header="City"/>
<Grid:DataGridDateColumn HeaderStyle="{StaticResource HeaderStyle}" PropertyName="PrimaryAddress.State" Header="State"/>
Any ideas?
Thank You,
Bill Spaulding