admin管理员组文章数量:1345324
I use jQuery DataTables plugin and my problem is that my German date does not get ordered correctly. It has the following format: dd.mm.YYYY HH:iih
Here es my code:
JSFIDDLE:
/
HTML:
<table id="my-table">
<thead>
<th>Nr. </th>
<th>Date</th>
<th>Name</th>
</thead>
<tr>
<td>1</td>
<td>27.08.2015 19:00h</td>
<td>Carl</td>
</tr>
<tr>
<td>2</td>
<td>10.02.2016 14:00h</td>
<td>Alan</td>
</tr>
<tr>
<td>3</td>
<td>07.12.2015 21:00h</td>
<td>Bobby</td>
</tr>
</table>
JS (updated, with ajax):
$('#my-table').DataTable({
"ajax": 'my_url',
"columns": [
{"data": "nr"},
{"data": "date"},
{"data": "name"}
],
"autoWidth": false,
"order": [],
"fnCreatedRow": function( nRow, aData, iDataIndex ) {
var dateFull = aData.date;
var dateFullItems = dateFull.split(' ');
var dateDatum = dateFullItems[0];
var dateDatumItems = dateDatum.split('.');
var dateTime = dateFullItems[1];
var dateFormat = dateDatumItems[2] + '-' + dateDatumItems[1] + '-' + dateDatumItems[0] + 'T' + dateTime + ':00Z';
$(nRow).find('td:nth-of-type(2)').attr('data-sort', dateFormat);
},
});
What adjustments do I need to do in my JS for the sorting of date to work?
I use jQuery DataTables plugin and my problem is that my German date does not get ordered correctly. It has the following format: dd.mm.YYYY HH:iih
Here es my code:
JSFIDDLE:
https://jsfiddle/uxaLn1e3/3/
HTML:
<table id="my-table">
<thead>
<th>Nr. </th>
<th>Date</th>
<th>Name</th>
</thead>
<tr>
<td>1</td>
<td>27.08.2015 19:00h</td>
<td>Carl</td>
</tr>
<tr>
<td>2</td>
<td>10.02.2016 14:00h</td>
<td>Alan</td>
</tr>
<tr>
<td>3</td>
<td>07.12.2015 21:00h</td>
<td>Bobby</td>
</tr>
</table>
JS (updated, with ajax):
$('#my-table').DataTable({
"ajax": 'my_url',
"columns": [
{"data": "nr"},
{"data": "date"},
{"data": "name"}
],
"autoWidth": false,
"order": [],
"fnCreatedRow": function( nRow, aData, iDataIndex ) {
var dateFull = aData.date;
var dateFullItems = dateFull.split(' ');
var dateDatum = dateFullItems[0];
var dateDatumItems = dateDatum.split('.');
var dateTime = dateFullItems[1];
var dateFormat = dateDatumItems[2] + '-' + dateDatumItems[1] + '-' + dateDatumItems[0] + 'T' + dateTime + ':00Z';
$(nRow).find('td:nth-of-type(2)').attr('data-sort', dateFormat);
},
});
What adjustments do I need to do in my JS for the sorting of date to work?
Share Improve this question edited Apr 7, 2016 at 7:15 Max asked Apr 7, 2016 at 6:09 MaxMax 8602 gold badges14 silver badges33 bronze badges 2- You can try this Ultimate date/time sorting plug-in – Stephan Bauer Commented Apr 7, 2016 at 6:23
-
I already tried. I put
$.fn.dataTable.moment( 'DD.MM.YYY HH:mm' )
just before my$('#my-table').DataTable(...)
declaration. I get the following console error message:$.fn.dataTable.moment is not a function
– Max Commented Apr 7, 2016 at 6:26
3 Answers
Reset to default 11Add a data-sort
attribute to the td
having the date stored in a Standard Format (I have used ISO Format here i.e. YYYY-MM-DDTHH:ii:ssZ
):
<tr>
<td>1</td>
<td data-sort="2015-08-27T19:00:00Z">27.08.2015 19:00h</td>
<td>Carl</td>
</tr>
<tr>
<td>2</td>
<td data-sort="2016-02-10T14:00:00Z">10.02.2016 14:00h</td>
<td>Alan</td>
</tr>
<tr>
<td>3</td>
<td data-sort="2015-12-07T21:00:00Z">07.12.2015 21:00h</td>
<td>Bobby</td>
</tr>
Now datatables
will consider this data-sort
value instead of the html of td
to sort the columns.
Live Fiddle
Even if you are creating the table dynamically you can achieve this in two ways:
A. Add a data-sort
attribute while generating the html.
B. Add a data-sort
after the datatable is created using jQuery and then reinit the datatable.
I think you must using a datetime format plugin for your gender data script, or a plugin for sortting your formatted datetime (Ultimate date / time sorting plug-in is my remend)
Sample on your case: jsfiddle/x92amfe4/4/
You can sort the dates by making JavaScript date objects from the strings. You then only need to split up the german date ("dd.mm.yy") and make a new date:
new Date(date.split('.')[2], date.split('.')[1]-1, date.split('.')[0])
For sorting german dates:
dates.sort((a, b) => {
return new Date(b.split('.')[2], b.split('.')[1]-1, b.split('.')[0]) - new Date(a.split('.')[2], a.split('.')[1]-1, a.split('.')[0])
});
Note: You can use any date format to create a JavaScript date object.
new Date(year, month(0-11) [, day [, hour [, minutes [, seconds [, milliseconds]]]]]);
本文标签: javascriptjQuery DataTables plugin Sort German dateStack Overflow
版权声明:本文标题:javascript - jQuery DataTables plugin: Sort German date - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743799896a2541115.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论