Lines 80-93
Link Here
|
80 |
</script> |
80 |
</script> |
81 |
|
81 |
|
82 |
<link rel="stylesheet" type="text/css" href="[% themelang %]/css/datatables.css" /> |
82 |
<link rel="stylesheet" type="text/css" href="[% themelang %]/css/datatables.css" /> |
83 |
<script type="text/javascript" src="[% themelang %]/lib/jquery/plugins/jquery.dataTables.min.js"></script> |
83 |
[% INCLUDE 'datatables.inc' %] |
84 |
[% INCLUDE 'datatables-strings.inc' %] |
|
|
85 |
<script type="text/javascript" src="[% themelang %]/js/datatables.js"></script> |
86 |
<script type="text/javascript" id="js"> |
84 |
<script type="text/javascript" id="js"> |
87 |
$(document).ready(function() { |
85 |
$(document).ready(function() { |
88 |
$("#labels-table").dataTable($.extend(true, {}, dataTablesDefaults, { |
86 |
$("#labels-table").dataTable($.extend(true, {}, dataTablesDefaults, { |
89 |
"sPaginationType": "four_button", |
87 |
"sPaginationType": "four_button", |
90 |
"aaSorting": [[ 1, "asc" ]], |
88 |
"aaSorting": [[ 1, "asc" ]], |
|
|
89 |
"aoColumnDefs": [ |
90 |
{ "aTargets": [ -1 ], "bSortable": false, "bSearchable": false }, |
91 |
] |
91 |
})); |
92 |
})); |
92 |
}); |
93 |
}); |
93 |
</script> |
94 |
</script> |
94 |
- |
|
|