Lines 180-186
Link Here
|
180 |
<th>Desk ID</th> |
180 |
<th>Desk ID</th> |
181 |
<th>Desk</th> |
181 |
<th>Desk</th> |
182 |
<th>Library</th> |
182 |
<th>Library</th> |
183 |
<th class="nosort">Action</th> |
183 |
<th class="NoSort noExport">Action</th> |
184 |
</tr> |
184 |
</tr> |
185 |
</thead> |
185 |
</thead> |
186 |
<tbody> |
186 |
<tbody> |
Lines 217-230
Link Here
|
217 |
[% MACRO jsinclude BLOCK %] |
217 |
[% MACRO jsinclude BLOCK %] |
218 |
[% Asset.js("js/admin-menu.js") | $raw %] |
218 |
[% Asset.js("js/admin-menu.js") | $raw %] |
219 |
[% INCLUDE 'datatables.inc' %] |
219 |
[% INCLUDE 'datatables.inc' %] |
|
|
220 |
[% INCLUDE 'columns_settings.inc' %] |
220 |
<script> |
221 |
<script> |
221 |
$(document).ready(function() { |
222 |
$(document).ready(function() { |
222 |
$("#table_desks").dataTable($.extend(true, {}, dataTablesDefaults, { |
223 |
KohaTable("table_desks", { |
223 |
"order": [[ 1, "asc" ]], |
224 |
"order": [[ 1, "asc" ]] |
224 |
"columnDefs": [ |
225 |
}); |
225 |
{ "orderable": false, "searchable": false, 'targets': ['nosort'] }, |
|
|
226 |
], |
227 |
})); |
228 |
}); |
226 |
}); |
229 |
</script> |
227 |
</script> |
230 |
[% END %] |
228 |
[% END %] |
231 |
- |
|
|