|
Lines 1-8
Link Here
|
| 1 |
[% INCLUDE 'doc-head-open.inc' %] |
1 |
[% INCLUDE 'doc-head-open.inc' %] |
| 2 |
<title>Koha › Acquisitions</title> |
2 |
<title>Koha › Acquisitions</title> |
|
|
3 |
<link rel="stylesheet" type="text/css" href="[% themelang %]/css/datatables.css" /> |
| 3 |
[% INCLUDE 'doc-head-close.inc' %] |
4 |
[% INCLUDE 'doc-head-close.inc' %] |
|
|
5 |
<script type="text/javascript" src="[% themelang %]/lib/jquery/plugins/jquery.dataTables.min.js"></script> |
| 6 |
[% INCLUDE 'datatables-strings.inc' %] |
| 7 |
<script type="text/javascript" src="[% themelang %]/js/datatables.js"></script> |
| 4 |
<script type="text/javascript"> |
8 |
<script type="text/javascript"> |
| 5 |
//<![CDATA[ |
9 |
//<![CDATA[ |
|
|
10 |
|
| 11 |
dt_overwrite_html_sorting_localeCompare(); |
| 12 |
|
| 6 |
$(document).ready(function() { |
13 |
$(document).ready(function() { |
| 7 |
$('#showallbudgets').click(function() { |
14 |
$('#showallbudgets').click(function() { |
| 8 |
if ( $('#showallbudgets:checked').val() !== undefined) { |
15 |
if ( $('#showallbudgets:checked').val() !== undefined) { |
|
Lines 18-23
$(document).ready(function() {
Link Here
|
| 18 |
$('.bu_active').hide(); |
25 |
$('.bu_active').hide(); |
| 19 |
} |
26 |
} |
| 20 |
}); |
27 |
}); |
|
|
28 |
var srlt = $("#accounts").dataTable($.extend(true, {}, dataTablesDefaults, { |
| 29 |
"aoColumns": [ |
| 30 |
null, |
| 31 |
null, |
| 32 |
null, |
| 33 |
null, |
| 34 |
{ "sType": "num-html" }, |
| 35 |
{ "sType": "num-html" }, |
| 36 |
null, |
| 37 |
], |
| 38 |
'bPaginate': false, |
| 39 |
'bFilter': false, |
| 40 |
'bInfo': false, |
| 41 |
} ) ); |
| 21 |
}); |
42 |
}); |
| 22 |
//]]> |
43 |
//]]> |
| 23 |
</script> |
44 |
</script> |
| 24 |
- |
|
|