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 280-286
Link Here
|
280 |
|
280 |
|
281 |
$("#checkouts").kohaTable({ |
281 |
$("#checkouts").kohaTable({ |
282 |
columnDefs: [ |
282 |
columnDefs: [ |
283 |
{ targets: [0, 3], orderable: false, searchable: false }, |
|
|
284 |
{ targets: [1], type: "num-html" }, |
283 |
{ targets: [1], type: "num-html" }, |
285 |
], |
284 |
], |
286 |
dom: "t", |
285 |
dom: "t", |
Lines 290-296
Link Here
|
290 |
|
289 |
|
291 |
$("#checkouts_result").kohaTable({ |
290 |
$("#checkouts_result").kohaTable({ |
292 |
columnDefs: [ |
291 |
columnDefs: [ |
293 |
{ targets: [0, 3], orderable: false, searchable: false }, |
|
|
294 |
{ targets: [1], type: "num-html" }, |
292 |
{ targets: [1], type: "num-html" }, |
295 |
], |
293 |
], |
296 |
dom: "t", |
294 |
dom: "t", |
297 |
- |
|
|