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

(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/columns_settings.inc (+1 lines)
Lines 134-139 function KohaTable(id_selector, dt_parameters, columns_settings, add_filters) { Link Here
134
        { "targets": [ "string-sort" ],  "type": "string" },
134
        { "targets": [ "string-sort" ],  "type": "string" },
135
        { "targets": [ "anti-the" ],     "type": "anti-the" },
135
        { "targets": [ "anti-the" ],     "type": "anti-the" },
136
        { "targets": [ "NoSort" ],       "orderable": false, "searchable": false },
136
        { "targets": [ "NoSort" ],       "orderable": false, "searchable": false },
137
        { "targets": [ "NoVisible" ],   "visible": false }
137
    ];
138
    ];
138
    if ( new_parameters["aoColumnDefs"] === undefined ) {
139
    if ( new_parameters["aoColumnDefs"] === undefined ) {
139
        new_parameters["aoColumnDefs"] = default_column_defs;
140
        new_parameters["aoColumnDefs"] = default_column_defs;
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/reports/guided_reports_start.tt (-5 / +2 lines)
Lines 278-290 Link Here
278
                                                [% IF (usecache) %]
278
                                                [% IF (usecache) %]
279
                                                    <th>Cache expiry (seconds)</th>
279
                                                    <th>Cache expiry (seconds)</th>
280
                                                [% ELSE %]
280
                                                [% ELSE %]
281
                                                    <th class="hidden">&nbsp;</th>
281
                                                    <th class="NoVisible">Cache expiry (seconds)</th>
282
                                                [% END %]
282
                                                [% END %]
283
                                                <th>Saved results</th>
283
                                                <th>Saved results</th>
284
                                                [% IF has_obsolete_reports %]
284
                                                [% IF has_obsolete_reports %]
285
                                                    <th>Update</th>
285
                                                    <th>Update</th>
286
                                                [% ELSE %]
286
                                                [% ELSE %]
287
                                                    <th class="hidden">&nbsp;</th>
287
                                                    <th class="NoVisible">Update</th>
288
                                                [% END %]
288
                                                [% END %]
289
                                                <th class="NoSort noExport">Actions</th>
289
                                                <th class="NoSort noExport">Actions</th>
290
                                            </tr>
290
                                            </tr>
Lines 1733-1741 Link Here
1733
                    'bAutoWidth': false,
1733
                    'bAutoWidth': false,
1734
                    'sPaginationType': 'full',
1734
                    'sPaginationType': 'full',
1735
                    'aaSorting': [[ 1, "asc" ]],
1735
                    'aaSorting': [[ 1, "asc" ]],
1736
                    'aoColumnDefs': [
1737
                        { "visible": false, "aTargets" : [ "hidden" ] }
1738
                    ],
1739
                    'oLanguage': {
1736
                    'oLanguage': {
1740
                        'sZeroRecords': _("No matching reports found")
1737
                        'sZeroRecords': _("No matching reports found")
1741
                    },
1738
                    },
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/modborrowers.tt (-6 / +2 lines)
Lines 202-208 Link Here
202
                                                [% IF ( op == 'show' ) %]
202
                                                [% IF ( op == 'show' ) %]
203
                                                    <th class="NoSort">&nbsp;</th>
203
                                                    <th class="NoSort">&nbsp;</th>
204
                                                [% ELSE %]
204
                                                [% ELSE %]
205
                                                    <th class="hidden">&nbsp;</th>
205
                                                    <th class="NoVisible">&nbsp;</th>
206
                                                [% END %]
206
                                                [% END %]
207
                                                <th>Card number</th>
207
                                                <th>Card number</th>
208
                                                <th>Surname</th>
208
                                                <th>Surname</th>
Lines 236-242 Link Here
236
                                                    [% IF ( op == 'show' ) %]
236
                                                    [% IF ( op == 'show' ) %]
237
                                                        <td>
237
                                                        <td>
238
                                                    [% ELSE %]
238
                                                    [% ELSE %]
239
                                                        <td class="hidden">
239
                                                        <td class="NoVisible">
240
                                                    [% END %]
240
                                                    [% END %]
241
                                                        <input type="checkbox" name="borrowernumber" value="[% borrower.borrowernumber | html %]" checked="checked" />
241
                                                        <input type="checkbox" name="borrowernumber" value="[% borrower.borrowernumber | html %]" checked="checked" />
242
                                                    </td>
242
                                                    </td>
Lines 427-435 Link Here
427
                KohaTable("borrowerst", {
427
                KohaTable("borrowerst", {
428
                    "order": [[ 1, "asc" ]],
428
                    "order": [[ 1, "asc" ]],
429
                    "autoWidth": false,
429
                    "autoWidth": false,
430
                    "columnDefs": [
431
                        { "visible": false, "targets" : [ "hidden" ] }
432
                    ]
433
                }, table_settings);
430
                }, table_settings);
434
431
435
                $("#selectallbutton").click(function() {
432
                $("#selectallbutton").click(function() {
436
- 

Return to bug 29218