sorting issue

M

Mike

I have several datagirds that allow sorting on two date columns. The sorting
works but its not showing the newest date first when I sort. For example

if I have dates in my column as

01/01/2008
12/01/2007
12/08/2007
02/02/2007


when I sort, I get it like
12/08/2007
12/01/2007
02/02/2007
01/01/2008


or like this:
01/01/2008
02/02/2007
12/08/2007
12/01/2007

what could be causing the sort to work as such? If I don't have a date such
as 01/01/2008, the sorting works correclty, its when the date is 01/01/2008
that its not sorting correctly. Any ideas on what may be causing this?
 
M

Mark Rae [MVP]

what could be causing the sort to work as such?

It's treating the date columns as pieces of text... This would be expected
behaviour if you are doing the sorting client-side, because it won't know
natively that the data to be sorted is a textual representation of a date
type...

How have you configured your DataGrid(s), specifically the column(s) in
question?

How are you doing the sorting?
 
M

Mike

We're doing the sorting within the datagrid_sorting() method in the code
behind. The sorting has been working correctly, its just now with the
01/01/2008 dates in there, its not sorting correctly
 
M

Mark Rae [MVP]

We're doing the sorting within the datagrid_sorting() method in the code
behind.

Please post your code...
The sorting has been working correctly, its just now with the 01/01/2008
dates in there, its not sorting correctly

Almost certainly just a coincidence...
 
M

Mike

I found it, the developer that created the stored procedures is passing all
the dates as text fields and not date fields.
I fixed it now.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,769
Messages
2,569,580
Members
45,054
Latest member
TrimKetoBoost

Latest Threads

Top