Lines 63-69
Link Here
|
63 |
<table id="notices"> |
63 |
<table id="notices"> |
64 |
<thead> |
64 |
<thead> |
65 |
<tr> |
65 |
<tr> |
66 |
<th class="nosort"> </th> |
66 |
<th class="NoSort"> </th> |
67 |
<th>Time created</th> |
67 |
<th>Time created</th> |
68 |
<th>Patron</th> |
68 |
<th>Patron</th> |
69 |
<th>Notice</th> |
69 |
<th>Notice</th> |
Lines 71-77
Link Here
|
71 |
<th>Status</th> |
71 |
<th>Status</th> |
72 |
<th>Updated on</th> |
72 |
<th>Updated on</th> |
73 |
<th>Delivery note</th> |
73 |
<th>Delivery note</th> |
74 |
<th class="nosort">Actions</th> |
74 |
<th class="NoSort">Actions</th> |
75 |
</tr> |
75 |
</tr> |
76 |
</thead> |
76 |
</thead> |
77 |
<tbody> |
77 |
<tbody> |
Lines 275-283
Link Here
|
275 |
<script> |
275 |
<script> |
276 |
$(document).ready(function() { |
276 |
$(document).ready(function() { |
277 |
$("#notices").dataTable($.extend(true, {}, dataTablesDefaults, { |
277 |
$("#notices").dataTable($.extend(true, {}, dataTablesDefaults, { |
278 |
"aoColumnDefs": [ |
|
|
279 |
{ 'bSortable': false, 'aTargets': [ 'nosort' ] } |
280 |
], |
281 |
"aaSorting": [[1, "desc" ]], |
278 |
"aaSorting": [[1, "desc" ]], |
282 |
"sPaginationType": "full" |
279 |
"sPaginationType": "full" |
283 |
})); |
280 |
})); |
284 |
- |
|
|