JavaScript
- 1 ответ
- 0 вопросов
0
Вклад в тег
$.tablesorter.addParser({
id: 'mm/yyyy',
is: function (s) {
return false;
},
format: function (s) {
var date = s.split('/');
return new Date(date[1], date[0]).getTime();
},
type: 'numeric'
});
//подключаю (для чайников как я ) 5 - номер столбца (0 - первый столбец)
$(".sort__table").tablesorter({
headers: { 5: { sorter: 'mm/yyyy' } }
});