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
210
Problems sorting column in XamGrid
posted

Greetings

I have a xamgrid in which I would like to always have the last column sorted in descending order.  the data changes quite frequently but I want those changes to be reflected in the grid when they do change.  How do I make it so that the last column is always sorted?  I thought I needed to use the issorted property but it looks like not.

<ig:XamGrid x:Name="SideGrid"
Grid.Row="2"
Grid.ColumnSpan="2"
ItemsSource="{Binding}"
AutoGenerateColumns="False"
>
<ig:XamGrid.Columns>
<!--<ig:TextColumn HeaderText="Bus Rank"/>-->
<ig:TextColumn HeaderText="Number" Key="Number" Width="90" IsSortable="False"/>
<ig:TextColumn HeaderText="Load" Key="Load" Width="*" IsSorted="Descending"/>
</ig:XamGrid.Columns>
<ig:XamGrid.SortingSettings>
<ig:SortingSettings ShowSortIndicator="False"/>
</ig:XamGrid.SortingSettings>