|
Lines 61-67
Link Here
|
| 61 |
<table id="notices"> |
61 |
<table id="notices"> |
| 62 |
<thead> |
62 |
<thead> |
| 63 |
<tr> |
63 |
<tr> |
| 64 |
<th class="nosort"> </th> |
64 |
<th class="NoSort"> </th> |
| 65 |
<th>Time created</th> |
65 |
<th>Time created</th> |
| 66 |
<th>Patron</th> |
66 |
<th>Patron</th> |
| 67 |
<th>Notice</th> |
67 |
<th>Notice</th> |
|
Lines 69-75
Link Here
|
| 69 |
<th>Status</th> |
69 |
<th>Status</th> |
| 70 |
<th>Updated on</th> |
70 |
<th>Updated on</th> |
| 71 |
<th>Delivery note</th> |
71 |
<th>Delivery note</th> |
| 72 |
<th class="nosort">Actions</th> |
72 |
<th class="NoSort">Actions</th> |
| 73 |
</tr> |
73 |
</tr> |
| 74 |
</thead> |
74 |
</thead> |
| 75 |
<tbody> |
75 |
<tbody> |
|
Lines 306-312
Link Here
|
| 306 |
$(document).ready(function () { |
306 |
$(document).ready(function () { |
| 307 |
$("#notices").dataTable( |
307 |
$("#notices").dataTable( |
| 308 |
$.extend(true, {}, dataTablesDefaults, { |
308 |
$.extend(true, {}, dataTablesDefaults, { |
| 309 |
aoColumnDefs: [{ bSortable: false, aTargets: ["nosort"] }], |
|
|
| 310 |
aaSorting: [[1, "desc"]], |
309 |
aaSorting: [[1, "desc"]], |
| 311 |
sPaginationType: "full", |
310 |
sPaginationType: "full", |
| 312 |
}) |
311 |
}) |
| 313 |
- |
|
|