Hi,
I'm trying to display a person last name + first name in one column with the GridDataUnboundVisibleColumn but so far it's not working...
My grid is binded to a ObservableCollection of Couples, and each Couple contain a Man and a Girl object.
This is what I did, and it's thowing an 'System.Reflection.TargetInvocationException' :
<SF:GridDataUnboundVisibleColumn HeaderText="Girl" Format="'{Girl.LastName} {Girl.FirstName}'">
<SF:GridDataUnboundVisibleColumn HeaderText="Man" Format="'{Man.LastName} {Man.FirstName}'">