The telerik grid I have uses sorting on every field. I wanted to sort by the date in descending order, but now it is making the data show up wrong because it is sorting by the month and day, not the month, day, and year.
Ex:
12/31/2000
12/31/1998
12/31/1997
12/30/2012
12/30/2011
I would like the data to show up with the most recent month, day, and year...like this:
12/30/2012
12/30/2011
12/31/2000
12/31/1998
12/31/1997
<telerik:GridDateTimeColumn AllowFiltering="true" SortExpression="Service_Date" DataField="Service_Date" HeaderText="Service Date" UniqueName="Service_Date" DataType="System.DateTime" DataFormatString="{0:MM/dd/yyyy}" ReadOnly="true" >