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

(-)a/koha-tmpl/intranet-tmpl/prog/en/js/checkouts.js (-1 / +1 lines)
Lines 174-180 $(document).ready(function() { Link Here
174
                "sProcessing": MSG_DT_LOADING_RECORDS,
174
                "sProcessing": MSG_DT_LOADING_RECORDS,
175
            },
175
            },
176
            "bAutoWidth": false,
176
            "bAutoWidth": false,
177
            "sDom": 'C<"clearfix">rt',
177
            "dom": 'B<"clearfix">rt',
178
            "aoColumns": [
178
            "aoColumns": [
179
                {
179
                {
180
                    "mDataProp": function( oObj ) {
180
                    "mDataProp": function( oObj ) {
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/currency.tt (-6 / +4 lines)
Lines 27-40 Link Here
27
    $(document).ready(function() {
27
    $(document).ready(function() {
28
        columns_settings = [% ColumnsSettings.GetColumns( 'admin', 'currency', 'currencies-table', 'json' ) %]
28
        columns_settings = [% ColumnsSettings.GetColumns( 'admin', 'currency', 'currencies-table', 'json' ) %]
29
        var issuest = KohaTable("#currencies-table", {
29
        var issuest = KohaTable("#currencies-table", {
30
            "sDom": 'C<"clearfix">t',
30
            dom: 'B<"clearfix">t',
31
            "aaSorting": [],
31
            "columnDefs": [
32
            "aoColumnDefs": [
33
                { "aTargets": [ -1 ], "bSortable": false, "bSearchable": false },
32
                { "aTargets": [ -1 ], "bSortable": false, "bSearchable": false },
34
                { "sType": "title-string", "aTargets" : [ "title-string" ] }
33
                { "sType": "title-string", "aTargets" : [ "title-string" ] }
35
            ],
34
                ],
36
            "bPaginate": false,
35
        }, columns_settings );
37
        }, columns_settings);
38
36
39
        // prevents users to check active with a currency != 1
37
        // prevents users to check active with a currency != 1
40
        $("#rate").keyup(function() {
38
        $("#rate").keyup(function() {
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/reports/itemslost.tt (-2 / +1 lines)
Lines 11-17 Link Here
11
    $(document).ready(function() {
11
    $(document).ready(function() {
12
        var columns_settings = [% ColumnsSettings.GetColumns( 'reports', 'lostitems', 'lostitems-table', 'json' ) %];
12
        var columns_settings = [% ColumnsSettings.GetColumns( 'reports', 'lostitems', 'lostitems-table', 'json' ) %];
13
        var lostitems_table = KohaTable("#lostitems-table", {
13
        var lostitems_table = KohaTable("#lostitems-table", {
14
            "sDom": 'C<"clearfix">t',
14
            "dom": 'B<"clearfix">t',
15
            "aaSorting": [],
15
            "aaSorting": [],
16
            "aoColumnDefs": [
16
            "aoColumnDefs": [
17
                { "aTargets": [ -1 ], "bSortable": false, "bSearchable": false },
17
                { "aTargets": [ -1 ], "bSortable": false, "bSearchable": false },
18
- 

Return to bug 15285