@@ -, +, @@ and expiration dates, with different years, months and days. by the hold date or expiration date. The table sorts the date by the day number. --- koha-tmpl/intranet-tmpl/prog/js/holds.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) --- a/koha-tmpl/intranet-tmpl/prog/js/holds.js +++ a/koha-tmpl/intranet-tmpl/prog/js/holds.js @@ -15,7 +15,7 @@ $(document).ready(function() { "sDom": "rt", "columns": [ { - "mDataProp": "reservedate_formatted" + "data": { _: "reservedate_formatted", "sort": "reservedate" } }, { "mDataProp": function ( oObj ) { @@ -91,7 +91,7 @@ $(document).ready(function() { else { return oObj.branchcode.escapeHtml() || ""; } } }, - { "mDataProp": "expirationdate_formatted" }, + { "data": { _: "expirationdate_formatted", "sort": "expirationdate" } }, { "mDataProp": function( oObj ) { if ( oObj.priority && parseInt( oObj.priority ) && parseInt( oObj.priority ) > 0 ) { --