Lines 168-177
Link Here
|
168 |
<table id="checkouts"> |
168 |
<table id="checkouts"> |
169 |
<thead> |
169 |
<thead> |
170 |
<tr> |
170 |
<tr> |
171 |
<th> </th> |
171 |
<th class="NoSort"> </th> |
172 |
<th>Due date</th> |
172 |
<th>Due date</th> |
173 |
<th>Title</th> |
173 |
<th>Title</th> |
174 |
<th>Item type</th> |
174 |
<th class="NoSort">Item type</th> |
175 |
<th>Home library</th> |
175 |
<th>Home library</th> |
176 |
<th>Checked out on</th> |
176 |
<th>Checked out on</th> |
177 |
<th>Checked out from</th> |
177 |
<th>Checked out from</th> |
Lines 281-287
Link Here
|
281 |
|
281 |
|
282 |
$("#checkouts").kohaTable({ |
282 |
$("#checkouts").kohaTable({ |
283 |
columnDefs: [ |
283 |
columnDefs: [ |
284 |
{ targets: [0, 3], orderable: false, searchable: false }, |
|
|
285 |
{ targets: [1], type: "num-html" }, |
284 |
{ targets: [1], type: "num-html" }, |
286 |
], |
285 |
], |
287 |
dom: "t", |
286 |
dom: "t", |
Lines 291-297
Link Here
|
291 |
|
290 |
|
292 |
$("#checkouts_result").kohaTable({ |
291 |
$("#checkouts_result").kohaTable({ |
293 |
columnDefs: [ |
292 |
columnDefs: [ |
294 |
{ targets: [0, 3], orderable: false, searchable: false }, |
|
|
295 |
{ targets: [1], type: "num-html" }, |
293 |
{ targets: [1], type: "num-html" }, |
296 |
], |
294 |
], |
297 |
dom: "t", |
295 |
dom: "t", |
298 |
- |
|
|