It looks like cck_time fields sort lexically in views. Is it possible sort them chronologically instead? If not, can I turn this into a feature request?

Comments

HorsePunchKid’s picture

As an alternative, perhaps the data could be stored in 24-hour format but displayed in 12-hour format.

mglover’s picture

I ran into this same problem and ended up using a CCK Computed Field to convert the 12-hour formatted time to 24-hour, then sorted on that field.

I just used this for the Computed Field value:

$node_field[0]['value'] = date("H:i", strtotime($node->field_starting_time[0]['value']));
Everett Zufelt’s picture

Status: Active » Closed (won't fix)

No longer providing support for 5.x. If this issue is still relevant for 7.x or 6.x then please re-open.