Hi
I have this scenario where i bind the List(Of parentObj) to a grid.
One of the properties of the parentObj exposes a childObj
i want to get the childObj.Name to come as one of the cell values.
i tried this
<igDP:Field Name="childObj.Name" Label="Name" />
but its not working....
Please help me out...
Thanks Andrew that worked like a charm...
You would have to use an UnboundField instead of a Field and set its BindingPath property to "childObj.Name" instead of setting the Name.