This question is locked. New answers and comments are not allowed.
I am binding a grid view to a list of business objects. Each business object has a child object and I want to bind one column of my grid to a property of the child and have it such that any updates to the child object are automatically reflected in the grid via property notification.
<
common:GridViewDataColumn Header="Position" DataMemberBinding="{Binding Position.EmpPosTitle, Mode=TwoWay}" />
When I do this I always get an empty grid cell, any ideas on how to make this work?
