|
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>Action</th> |
183 |
<th class="nosort">Action</th> |
| 184 |
</tr> |
184 |
</tr> |
| 185 |
</thead> |
185 |
</thead> |
| 186 |
<tbody> |
186 |
<tbody> |
|
Lines 220-231
Link Here
|
| 220 |
<script> |
220 |
<script> |
| 221 |
$(document).ready(function() { |
221 |
$(document).ready(function() { |
| 222 |
$("#table_desks").dataTable($.extend(true, {}, dataTablesDefaults, { |
222 |
$("#table_desks").dataTable($.extend(true, {}, dataTablesDefaults, { |
| 223 |
"aoColumnDefs": [ |
223 |
"order": [[ 1, "asc" ]], |
| 224 |
{ "aTargets": [ -1, -2 ], "bSortable": false, "bSearchable": false }, |
224 |
"columnDefs": [ |
|
|
225 |
{ "orderable": false, "searchable": false, 'targets': ['nosort'] }, |
| 225 |
], |
226 |
], |
| 226 |
"aaSorting": [[ 1, "asc" ]], |
|
|
| 227 |
"iDisplayLength": 10, |
| 228 |
"sPaginationType": "full_numbers" |
| 229 |
})); |
227 |
})); |
| 230 |
}); |
228 |
}); |
| 231 |
</script> |
229 |
</script> |
| 232 |
- |
|
|