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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/batch_extend_due_dates.tt (-11 / +4 lines)
Lines 167-176 Link Here
167
                    <table id="checkouts">
167
                    <table id="checkouts">
168
                        <thead>
168
                        <thead>
169
                            <tr>
169
                            <tr>
170
                                <th>&nbsp;</th>
170
                                <th class="NoSort">&nbsp;</th>
171
                                <th>Due date</th>
171
                                <th>Due date</th>
172
                                <th>Title</th>
172
                                <th>Title</th>
173
                                <th>Item type</th>
173
                                <th class="NoSort">Item type</th>
174
                                <th>Home library</th>
174
                                <th>Home library</th>
175
                                <th>Checked out on</th>
175
                                <th>Checked out on</th>
176
                                <th>Checked out from</th>
176
                                <th>Checked out from</th>
Lines 268-287 Link Here
268
            $("#selectall").click();
268
            $("#selectall").click();
269
269
270
            $("#checkouts").kohaTable({
270
            $("#checkouts").kohaTable({
271
                columnDefs: [
271
                columnDefs: [{ targets: [1], type: "num-html" }],
272
                    { targets: [0, 3], orderable: false, searchable: false },
273
                    { targets: [1], type: "num-html" },
274
                ],
275
                dom: "t",
272
                dom: "t",
276
                order: [],
273
                order: [],
277
                paginate: false,
274
                paginate: false,
278
            });
275
            });
279
276
280
            $("#checkouts_result").kohaTable({
277
            $("#checkouts_result").kohaTable({
281
                columnDefs: [
278
                columnDefs: [{ targets: [1], type: "num-html" }],
282
                    { targets: [0, 3], orderable: false, searchable: false },
283
                    { targets: [1], type: "num-html" },
284
                ],
285
                dom: "t",
279
                dom: "t",
286
                order: [],
280
                order: [],
287
                paginate: false,
281
                paginate: false,
288
- 

Return to bug 38984