Lines 15-20
Link Here
|
15 |
|
15 |
|
16 |
$(document).ready(function(){ |
16 |
$(document).ready(function(){ |
17 |
var pendingt = $("#pendingt").dataTable($.extend(true, {}, dataTablesDefaults, { |
17 |
var pendingt = $("#pendingt").dataTable($.extend(true, {}, dataTablesDefaults, { |
|
|
18 |
"bStateSave": true, |
19 |
"iCookieDuration": 60*60*24*1000, // 1000 days |
20 |
"aLengthMenu": [[10, 25, 50, 100, -1], [10, 25, 50, 100, "All"]], |
18 |
"aoColumnDefs": [ |
21 |
"aoColumnDefs": [ |
19 |
{ "aTargets": [ 3, 8, 9 ], "bSortable": false, "bSearchable": false }, |
22 |
{ "aTargets": [ 3, 8, 9 ], "bSortable": false, "bSearchable": false }, |
20 |
], |
23 |
], |
Lines 33-38
Link Here
|
33 |
"sPaginationType": "four_button" |
36 |
"sPaginationType": "four_button" |
34 |
} ) ); |
37 |
} ) ); |
35 |
var receivedt = $("#receivedt").dataTable($.extend(true, {}, dataTablesDefaults, { |
38 |
var receivedt = $("#receivedt").dataTable($.extend(true, {}, dataTablesDefaults, { |
|
|
39 |
"bStateSave": true, |
40 |
"iCookieDuration": 60*60*24*1000, // 1000 days |
41 |
"aLengthMenu": [[10, 25, 50, 100, -1], [10, 25, 50, 100, "All"]], |
36 |
"aoColumnDefs": [ |
42 |
"aoColumnDefs": [ |
37 |
{ "aTargets": [ 3, -1 ], "bSortable": false, "bSearchable": false }, |
43 |
{ "aTargets": [ 3, -1 ], "bSortable": false, "bSearchable": false }, |
38 |
], |
44 |
], |
39 |
- |
|
|