DateTime.ToString fixes for other countries

Fixed: Aired Date sorting on Missing
This commit is contained in:
Mark McDowall
2012-12-05 17:54:09 -08:00
parent 7bdc10c370
commit feaf63c758
6 changed files with 10 additions and 8 deletions
+2 -2
View File
@@ -49,10 +49,10 @@
function airDate (source, type, val) {
// 'display' and 'filter' use our fancy naming
if (type === 'display' || type === 'filter') {
return source["AirDateString"];
return source["AirDate"];
}
// 'sort' and 'type' both just use the raw data
return source["AirDate"];
return source["AirDateSorter"];
}
function actions(row) {