我有一个带日期和时间列的jQuery数据表:
Date Time Note
1/2/2015 10:02:03 Test
1/4/2915 02:12:32 Test
1/3/2015 02:05:03 Test
3/2/2015 11:02:03 Test
1/4/2015 01:02:13 Test
我想实现时间排序。按时排序时,我们首先需要按日期排序,然后按时间排序:
Date Time Note
1/2/2015 10:02:03 Test
1/3/2015 02:05:03 Test
1/4/2015 01:02:13 Test
1/4/2915 02:12:32 Test
3/2/2015 11:02:03 Test
我有以下代码:
//jQuery datatable code
{ mData: 'date', sTitle: 'Date', sClass: "dtDate" },
{ mData: 'time', sTitle: 'Time', sClass: "dtTime", sType: "time-date-sort"},
{ mData: 'notes', sTitle: 'Notes' },
// More code...
jQuery.fn.dataTableExt.oSort['time-date-sort-asc'] = function(startTime, endTime) {
//Date and time sorts go here
return sortedVal;
};
jQuery.fn.dataTableExt.oSort['time-date-sort-desc'] = function (startTime, endTime) {
//Date and time sorts go here
return sortedVal;
};
我可以使用它来排序时间,但我如何首先对日期进行排序? 我试图找出如何在表格行中获取日期值的引用(与该行中的时间值相关联)。例如,如何抓取日期对象对于时间为1/2/2015
的行,10:02:03
?看起来好像我可以向oSort函数添加自定义参数。我可以使用jQuery.fn.dataTableExt.oSort
或jQuery.fn.dataTableExt.afnSortData
作为更好的选择吗?
答案 0 :(得分:1)
要从其他列中获取要包含在自定义排序中的值,您必须创建自定义数据源排序插件。以下内容将第0列和第1列的值作为日期+时间字符串返回,即1/2/2015 10:02:03
:
$.fn.dataTable.ext.order['order-time-date-sort'] = function(settings, col) {
return this.api().row({order:'index'} ).nodes().map(function (tr, i) {
return $('td:eq(0)', tr).text()+' '+$('td:eq(1)', tr).text();
});
}
然后将以上order-date-time-sort
设置为时间列的orderDateType
:
var table = $('#example').DataTable({
columnDefs : [
{ type: 'time-date-sort',
orderDataType: "order-time-date-sort",
targets: [1]
}
]
});
现在可以使用简单的Date.parse()
:
jQuery.fn.dataTableExt.oSort['time-date-sort-pre'] = function(value) {
return Date.parse(value);
};
jQuery.fn.dataTableExt.oSort['time-date-sort-asc'] = function(a,b) {
return a-b;
};
jQuery.fn.dataTableExt.oSort['time-date-sort-desc'] = function(a,b) {
return b-a;
};
演示 - >的 http://jsfiddle.net/4toLj9yn/ 强>
注意:如果您遇到性能问题,可能会发生巨大的表,您应该“缓存”order-time-date-sort
的结果(只需将结果存储在变量中)。您还可以考虑使用完全不同的方法 - orthogonal data。