Lines 1-15
Link Here
|
1 |
[% INCLUDE 'doc-head-open.inc' %] |
1 |
[% INCLUDE 'doc-head-open.inc' %] |
2 |
<title>Sent notices for [% INCLUDE 'patron-title.inc' %]</title> |
2 |
<title>Sent notices for [% INCLUDE 'patron-title.inc' %]</title> |
3 |
[% INCLUDE 'doc-head-close.inc' %] |
3 |
[% INCLUDE 'doc-head-close.inc' %] |
4 |
<script type="text/javascript" src="[% themelang %]/lib/jquery/plugins/jquery.tablesorter.min.js"></script> |
4 |
<link rel="stylesheet" type="text/css" href="/intranet-tmpl/prog/en/css/datatables.css" /> |
5 |
<script type="text/javascript" language="javascript"> |
5 |
<script type="text/javascript" src="/intranet-tmpl/prog/en/lib/jquery/plugins/jquery.dataTables.min.js"></script> |
|
|
6 |
[% INCLUDE 'datatables-strings.inc' %] |
7 |
<script type="text/javascript" src="/intranet-tmpl/prog/en/js/datatables.js"></script> |
8 |
<script type="text/javascript"> |
6 |
//<![CDATA[ |
9 |
//<![CDATA[ |
7 |
$(document).ready(function() { |
10 |
$(document).ready(function() { |
8 |
$("#noticestable").tablesorter({ |
11 |
$("#noticestable").dataTable($.extend(true, {}, dataTablesDefaults, { |
9 |
[% IF ( dateformat == 'metric' ) %] |
12 |
"aaSorting": [[ 3, "desc" ]], |
10 |
dateFormat: 'uk' |
13 |
"aLengthMenu": [[10, 25, 50, 100, -1], [10, 25, 50, 100, "All"]], |
11 |
[% END %] |
14 |
"iDisplayLength": 20, |
12 |
}); |
15 |
"sPaginationType": "four_button" |
|
|
16 |
})); |
13 |
|
17 |
|
14 |
$(".message").hide(); |
18 |
$(".message").hide(); |
15 |
$(".message-title").click(function(e){ |
19 |
$(".message-title").click(function(e){ |
16 |
- |
|
|