Link to home
Start Free TrialLog in
Avatar of vcurtis
vcurtis

asked on

how do I bind two items in the same column for sorting in silverlight

Need Help
  I have the following code snippit and I want to click on the column heading and for sorting. the problem is that it is set to sort on "lastName". But I want to sort on  last name BUT have the first name with it.


<sdk:DataGridTextColumn x:Name="MeasureIDColumn"                                                Binding="{Binding MeasureID}"
      Header="Measure ID"                                                      SortMemberPath="lastName"                                                       Width="Auto" />
ASKER CERTIFIED SOLUTION
Avatar of Gautham Janardhan
Gautham Janardhan

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of vcurtis
vcurtis

ASKER

thank you