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
220
two level sorting in UltraListView
posted

Hi,

is there a way to sort values in a list view by respect a sort level.
For example I have got a column with a description and a column with dates and a column with time.
If I add a sort order for the main column description the values are filtered by this but now I want to sort this result twice in form of the dates column.
That we have got a sort in a sort.
Let me give you some values so that you are able understand what I mean:

 desc.    dates               time
test        03.01.2008        11:40
test        01.01.2008        10:40
vuw        01.01.2008        10:40
abc         02.01.2007        13:11

at the moment when I'm sorting by description column I've got this result:

 desc.    dates               time
abc       02.01.2007         13:11
test        03.01.2008        11:40
test        01.01.2008        10:40
vuw        01.01.2008        10:40

but I would like to have this:

 desc.    dates               time
abc         02.01.2007        13:11
test        01.01.2008        10:40
test        03.01.2008        11:40
vuw        01.01.2008        10:40

how to get this?
thx for your help!

Regards

Tim Mischkin