View | Details | Raw Unified | Return to bug 11605
Collapse All | Expand All

(-)a/koha-tmpl/intranet-tmpl/prog/en/js/datatables.js (-1 / +2 lines)
Lines 24-30 var dataTablesDefaults = { Link Here
24
        "sZeroRecords"      : window.MSG_DT_ZERO_RECORDS || "No matching records found"
24
        "sZeroRecords"      : window.MSG_DT_ZERO_RECORDS || "No matching records found"
25
    },
25
    },
26
    "sDom": '<"top pager"ilpf>t<"bottom pager"ip>',
26
    "sDom": '<"top pager"ilpf>t<"bottom pager"ip>',
27
    "aLengthMenu": [[10, 20, 50, 100, -1], [10, 20, 50, 100, window.MSG_DT_ALL || "All"]]
27
    "aLengthMenu": [[10, 20, 50, 100, -1], [10, 20, 50, 100, window.MSG_DT_ALL || "All"]],
28
    "iDisplayLength": 20
28
};
29
};
29
30
30
31
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/parcel.tt (-2 lines)
Lines 20-26 Link Here
20
        var pendingt = $("#pendingt").dataTable($.extend(true, {}, dataTablesDefaults, {
20
        var pendingt = $("#pendingt").dataTable($.extend(true, {}, dataTablesDefaults, {
21
            "bStateSave": true,
21
            "bStateSave": true,
22
            "iCookieDuration": 60*60*24*1000, // 1000 days
22
            "iCookieDuration": 60*60*24*1000, // 1000 days
23
            "aLengthMenu": [[10, 20, 50, 100, -1], [10, 20, 50, 100, "All"]],
24
            "aoColumnDefs": [
23
            "aoColumnDefs": [
25
                { "aTargets": [ 4, 9, 10 ], "bSortable": false, "bSearchable": false },
24
                { "aTargets": [ 4, 9, 10 ], "bSortable": false, "bSearchable": false },
26
            ],
25
            ],
Lines 62-68 Link Here
62
        var receivedt = $("#receivedt").dataTable($.extend(true, {}, dataTablesDefaults, {
61
        var receivedt = $("#receivedt").dataTable($.extend(true, {}, dataTablesDefaults, {
63
            "bStateSave": true,
62
            "bStateSave": true,
64
            "iCookieDuration": 60*60*24*1000, // 1000 days
63
            "iCookieDuration": 60*60*24*1000, // 1000 days
65
            "aLengthMenu": [[10, 20, 50, 100, -1], [10, 20, 50, 100, "All"]],
66
            "aoColumnDefs": [
64
            "aoColumnDefs": [
67
                { "aTargets": [ 5, -1 ], "bSortable": false, "bSearchable": false },
65
                { "aTargets": [ 5, -1 ], "bSortable": false, "bSearchable": false },
68
            ],
66
            ],
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/aqbudgets.tt (-2 lines)
Lines 190-197 var MSG_PARENT_BENEATH_BUDGET = "- " + _("New budget-parent is beneath budget") Link Here
190
                "aoColumnDefs": [
190
                "aoColumnDefs": [
191
                    { "aTargets": [ -1 ], "bSortable": false, "bSearchable": false },
191
                    { "aTargets": [ -1 ], "bSortable": false, "bSearchable": false },
192
                ],
192
                ],
193
                "aLengthMenu": [[10, 20, 50, 100, -1], [10, 20, 50, 100, "All"]],
194
                "iDisplayLength": 20,
195
                "sPaginationType": "four_button"
193
                "sPaginationType": "four_button"
196
            }));
194
            }));
197
        [% ELSE %]
195
        [% ELSE %]
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/auth_tag_structure.tt (-2 lines)
Lines 14-21 Link Here
14
        "aoColumnDefs": [
14
        "aoColumnDefs": [
15
            { "aTargets": [ -1, -2, -3 ], "bSortable": false, "bSearchable": false },
15
            { "aTargets": [ -1, -2, -3 ], "bSortable": false, "bSearchable": false },
16
        ],
16
        ],
17
        "iDisplayLength": 20,
18
        "aLengthMenu": [[10, 20, 50, 100, -1], [10, 20, 50, 100, "All"]],
19
        "sPaginationType": "four_button"
17
        "sPaginationType": "four_button"
20
    }));
18
    }));
21
 });
19
 });
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/authorised_values.tt (-2 lines)
Lines 16-23 Link Here
16
            { "aTargets": [ -1, -2 ], "bSortable": false, "bSearchable": false },
16
            { "aTargets": [ -1, -2 ], "bSortable": false, "bSearchable": false },
17
        ],
17
        ],
18
        "aaSorting": [[ 1, "asc" ]],
18
        "aaSorting": [[ 1, "asc" ]],
19
        "iDisplayLength": 20,
20
        "aLengthMenu": [[10, 20, 50, 100, -1], [10, 20, 50, 100, "All"]],
21
        "sPaginationType": "four_button"
19
        "sPaginationType": "four_button"
22
    }));
20
    }));
23
21
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/branch_transfer_limits.tt (-2 lines)
Lines 35-42 Link Here
35
            "aoColumnDefs": [
35
            "aoColumnDefs": [
36
                { "aTargets": [ -1 ], "bSortable": false, "bSearchable": false },
36
                { "aTargets": [ -1 ], "bSortable": false, "bSearchable": false },
37
            ],
37
            ],
38
            "iDisplayLength": 20,
39
            "aLengthMenu": [[10, 20, 50, 100, -1], [10, 20, 50, 100, "All"]],
40
            "sPaginationType": "four_button"
38
            "sPaginationType": "four_button"
41
        }));
39
        }));
42
	});
40
	});
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/branches.tt (-1 lines)
Lines 22-28 Link Here
22
                { "aTargets": [ -1, -2 ], "bSortable": false, "bSearchable": false },
22
                { "aTargets": [ -1, -2 ], "bSortable": false, "bSearchable": false },
23
            ],
23
            ],
24
            "iDisplayLength": 10,
24
            "iDisplayLength": 10,
25
            "aLengthMenu": [[10, 20, 50, 100, -1], [10, 20, 50, 100, "All"]],
26
            "sPaginationType": "four_button"
25
            "sPaginationType": "four_button"
27
        }));
26
        }));
28
    });
27
    });
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/categorie.tt (-2 lines)
Lines 16-23 Link Here
16
                { "aTargets": [ 3,4,5 ], "sType": "natural" },
16
                { "aTargets": [ 3,4,5 ], "sType": "natural" },
17
            ],
17
            ],
18
            "aaSorting": [[ 1, "asc" ]],
18
            "aaSorting": [[ 1, "asc" ]],
19
            "aLengthMenu": [[10, 20, 50, 100, -1], [10, 20, 50, 100, "All"]],
20
            "iDisplayLength": 20,
21
            "sPaginationType": "four_button"
19
            "sPaginationType": "four_button"
22
        }));
20
        }));
23
21
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/cities.tt (-2 / +1 lines)
Lines 18-25 Link Here
18
                { "aTargets": [ -1, -2 ], "bSortable": false, "bSearchable": false },
18
                { "aTargets": [ -1, -2 ], "bSortable": false, "bSearchable": false },
19
            ],
19
            ],
20
            "aaSorting": [[ 1, "asc" ]],
20
            "aaSorting": [[ 1, "asc" ]],
21
            "iDisplayLength": 10,
21
            "iDisplayLength": 10
22
            "aLengthMenu": [[10, 20, 50, 100, -1], [10, 20, 50, 100, "All"]],
23
        }));
22
        }));
24
    });
23
    });
25
//]]>
24
//]]>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/itemtypes.tt (-1 lines)
Lines 82-88 function Check(f) { Link Here
82
            "aoColumnDefs": [
82
            "aoColumnDefs": [
83
                { "aTargets": [ -1 ], "bSortable": false, "bSearchable": false },
83
                { "aTargets": [ -1 ], "bSortable": false, "bSearchable": false },
84
            ],
84
            ],
85
            "aLengthMenu": [[10, 20, 50, 100, -1], [10, 20, 50, 100, "All"]],
86
            "aaSorting": [[ 2, "asc" ]],
85
            "aaSorting": [[ 2, "asc" ]],
87
            "iDisplayLength": 10
86
            "iDisplayLength": 10
88
        }));
87
        }));
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/marctagstructure.tt (-2 lines)
Lines 31-38 $(document).ready(function() { Link Here
31
        "aoColumnDefs": [
31
        "aoColumnDefs": [
32
            { "aTargets": [ -1, -2, -3 ], "bSortable": false, "bSearchable": false },
32
            { "aTargets": [ -1, -2, -3 ], "bSortable": false, "bSearchable": false },
33
        ],
33
        ],
34
        "aLengthMenu": [[10, 20, 50, 100, -1], [10, 20, 50, 100, "All"]],
35
        "iDisplayLength": 20,
36
        "sPaginationType": "four_button"
34
        "sPaginationType": "four_button"
37
    }));
35
    }));
38
});
36
});
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/z3950servers.tt (-2 lines)
Lines 76-83 Link Here
76
            "aoColumnDefs": [
76
            "aoColumnDefs": [
77
                { "aTargets": [ 2,3,4,7,8,9,10,11 ], "bSortable": false, "bSearchable": false },
77
                { "aTargets": [ 2,3,4,7,8,9,10,11 ], "bSortable": false, "bSearchable": false },
78
            ],
78
            ],
79
            "iDisplayLength": 20,
80
            "aLengthMenu": [[10, 20, 50, 100, -1], [10, 20, 50, 100, "All"]],
81
            "sPaginationType": "four_button"
79
            "sPaginationType": "four_button"
82
        }));[% END %]
80
        }));[% END %]
83
     });
81
     });
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/reserveratios.tt (-2 lines)
Lines 20-27 Link Here
20
            "aoColumnDefs": [
20
            "aoColumnDefs": [
21
                { "aTargets": [ 8 ], "sType": "natural" }
21
                { "aTargets": [ 8 ], "sType": "natural" }
22
            ],
22
            ],
23
            "aLengthMenu": [[10, 20, 50, 100, -1], [10, 20, 50, 100, "All"]],
24
            "iDisplayLength": 20,
25
            "sPaginationType": "four_button"
23
            "sPaginationType": "four_button"
26
        }));
24
        }));
27
     });
25
     });
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/waitingreserves.tt (-2 lines)
Lines 17-24 dt_add_type_uk_date(); Link Here
17
            "aoColumnDefs": [
17
            "aoColumnDefs": [
18
                { "aTargets": [ -1 ], "bSortable": false, "bSearchable": false },
18
                { "aTargets": [ -1 ], "bSortable": false, "bSearchable": false },
19
            ],
19
            ],
20
            "aLengthMenu": [[10, 20, 50, 100, -1], [10, 20, 50, 100, "All"]],
21
            "iDisplayLength": 20,
22
            "sPaginationType": "four_button"
20
            "sPaginationType": "four_button"
23
        }));
21
        }));
24
      });
22
      });
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/course_reserves/course-details.tt (-2 lines)
Lines 14-21 Link Here
14
    $(document).ready(function(){
14
    $(document).ready(function(){
15
        $("#course_reserves_table").dataTable($.extend(true, {}, dataTablesDefaults, {
15
        $("#course_reserves_table").dataTable($.extend(true, {}, dataTablesDefaults, {
16
            "sPaginationType": "four_button",
16
            "sPaginationType": "four_button",
17
            "aLengthMenu": [[10, 20, 50, 100, -1], [10, 20, 50, 100, "All"]],
18
            "iDisplayLength": 20,
19
            "aoColumnDefs": [
17
            "aoColumnDefs": [
20
                { 'bSortable': false, 'aTargets': [ 9, 10, 11 ] }
18
                { 'bSortable': false, 'aTargets': [ 9, 10, 11 ] }
21
            ]
19
            ]
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/course_reserves/course-reserves.tt (-3 / +1 lines)
Lines 10-18 Link Here
10
<script type="text/javascript" id="js">
10
<script type="text/javascript" id="js">
11
$(document).ready(function() {
11
$(document).ready(function() {
12
    $("#course_reserves_table").dataTable($.extend(true, {}, dataTablesDefaults, {
12
    $("#course_reserves_table").dataTable($.extend(true, {}, dataTablesDefaults, {
13
        "sPaginationType": "four_button",
13
        "sPaginationType": "four_button"
14
        "aLengthMenu": [[10, 20, 50, 100, -1], [10, 20, 50, 100, "All"]],
15
        "iDisplayLength": 20
16
    }));
14
    }));
17
});
15
});
18
</script>
16
</script>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/members/notices.tt (-2 lines)
Lines 12-19 Link Here
12
    $("#noticestable").dataTable($.extend(true, {}, dataTablesDefaults, {
12
    $("#noticestable").dataTable($.extend(true, {}, dataTablesDefaults, {
13
        "aaSorting": [[ 3, "desc" ]],
13
        "aaSorting": [[ 3, "desc" ]],
14
        "aoColumns": [ null,null,null,{ "sType": "title-string" } ],
14
        "aoColumns": [ null,null,null,{ "sType": "title-string" } ],
15
        "aLengthMenu": [[10, 20, 50, 100, -1], [10, 20, 50, 100, "All"]],
16
        "iDisplayLength": 20,
17
        "sPaginationType": "four_button"
15
        "sPaginationType": "four_button"
18
    }));
16
    }));
19
17
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/reports/guided_reports_start.tt (-2 lines)
Lines 68-75 $(document).ready(function(){ Link Here
68
        'bAutoWidth': false,
68
        'bAutoWidth': false,
69
        'sDom': 't<"bottom pager"ilpf>',
69
        'sDom': 't<"bottom pager"ilpf>',
70
        'sPaginationType': 'four_button',
70
        'sPaginationType': 'four_button',
71
        'aLengthMenu': [[10, 20, 50, 100, -1], [10, 20, 50, 100, "All"]],
72
        'iDisplayLength': 20,
73
        'aaSorting': [[ 1, "asc" ]],
71
        'aaSorting': [[ 1, "asc" ]],
74
        'aoColumnDefs': [
72
        'aoColumnDefs': [
75
            { 'bSortable': false, 'bSearchable':false, 'aTargets': [0, -1, -2, -3, -4] },
73
            { 'bSortable': false, 'bSearchable':false, 'aTargets': [0, -1, -2, -3, -4] },
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/suggestion/suggestion.tt (-2 lines)
Lines 58-65 $(document).ready(function() { Link Here
58
        "aoColumnDefs": [
58
        "aoColumnDefs": [
59
            { "aTargets": [ 0, -1, -2 ], "bSortable": false, "bSearchable": false },
59
            { "aTargets": [ 0, -1, -2 ], "bSortable": false, "bSearchable": false },
60
        ],
60
        ],
61
        "aLengthMenu": [[10, 20, 50, 100, -1], [10, 20, 50, 100, "All"]],
62
        "iDisplayLength": 20,
63
        "sPaginationType": "four_button"
61
        "sPaginationType": "four_button"
64
    }));
62
    }));
65
[% FOREACH suggestion IN suggestions %]
63
[% FOREACH suggestion IN suggestions %]
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/tags/list.tt (-3 / +1 lines)
Lines 19-26 Link Here
19
                { "aTargets": [ -1, -2 ], "bSortable": false, "bSearchable": false },
19
                { "aTargets": [ -1, -2 ], "bSortable": false, "bSearchable": false },
20
            ],
20
            ],
21
            "aaSorting": [[ 0, "asc" ]],
21
            "aaSorting": [[ 0, "asc" ]],
22
            "aLengthMenu": [[10, 20, 50, 100, -1], [10, 20, 50, 100, "All"]],
23
            "iDisplayLength": 20,
24
            "sPaginationType": "four_button"
22
            "sPaginationType": "four_button"
25
        }));
23
        }));
26
    });
24
    });
Lines 100-103 tr.selected { background-color : #FFFFCC; } tr.selected td { background-color : Link Here
100
  </ul>
98
  </ul>
101
 </div>
99
 </div>
102
</div>
100
</div>
103
[% INCLUDE 'intranet-bottom.inc' %]
101
[% INCLUDE 'intranet-bottom.inc' %]
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/tags/review.tt (-3 lines)
Lines 136-143 tr > td input,td input[type="submit"] { font-size: 85%; padding: 1px; } Link Here
136
                null,null,null,null,null,null,[% UNLESS ( filter_approved_pending ) %]null,[% END %]{ "sType": "title-string" }
136
                null,null,null,null,null,null,[% UNLESS ( filter_approved_pending ) %]null,[% END %]{ "sType": "title-string" }
137
            ],
137
            ],
138
            "aaSorting": [[ 4, "desc" ]],
138
            "aaSorting": [[ 4, "desc" ]],
139
            "aLengthMenu": [[10, 20, 50, 100, -1], [10, 20, 50, 100, "All"]],
140
            "iDisplayLength": 20,
141
            "sPaginationType": "four_button"
139
            "sPaginationType": "four_button"
142
        }));
140
        }));
143
        var reviewerField = $("#approver");
141
        var reviewerField = $("#approver");
144
- 

Return to bug 11605