I want to list with Views different kinds of Content Types (say A and B) ordered by some date cck fields (say date_A and date_B). The problem comes when I put the sort criteria (first date_A and then date_B). The resulting listing is obviously something like this example:
01/01/2009 (type A)
31/12/2011 (type A)
02/02/2010 (type B)
I would rather get this:
01/01/2009 (type A)
02/02/2010 (type B)
31/12/2011 (type A)
One solution would be to share the same cck field across the different content types, but the dates have different precisions, and I can imagine different scenarios whith other fields (not just dates) where I would need to "group" the sort criterias.
Somebody knows how to achieve this?
Thanks.