Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
3521
Can't sort on columns which are templated
posted

I am having an issue with being able to use the built in sorting capability on columns in my grid which are templated.  Columns which don't have a template are fine.  In this example, I can sort on AccrualDate, but not on PO#.  Any thoughts?

 

  590 <igGrid:XamWebGrid.Columns>

  591 

  592                 <igGrid:TextColumn Key="AccrualDate"

  593                                   Width="75"

  594                                   HeaderText="Date"

  595                                   ValueConverter="{StaticResource DateConverter}" />

  596 

  597                 <igGrid:TextColumn Key="Task.Task"

  598                                   Width="55"

  599                                   HeaderText="Task#" />

  600 

  601                 <igGrid:TemplateColumn Key="PO.POId"

  602                                       Width="60"

  603                                       HeaderText="PO#">

  604                     <igGrid:TemplateColumn.ItemTemplate>

  605                         <DataTemplate>

  606                             <TextBlock Text="{Binding PO.POId}"

  607                                       ToolTipService.ToolTip="{Binding PO.Vendor.VendorName}" />

  608                         </DataTemplate>

  609                     </igGrid:TemplateColumn.ItemTemplate>

  610                 </igGrid:TemplateColumn>