Lines 15-35
Link Here
|
15 |
function () { $(this).toggleClass("ulined") } |
15 |
function () { $(this).toggleClass("ulined") } |
16 |
); |
16 |
); |
17 |
$("#holdst").dataTable($.extend(true, {}, dataTablesDefaults, { |
17 |
$("#holdst").dataTable($.extend(true, {}, dataTablesDefaults, { |
18 |
"aaSorting": [ [0,'desc'], [3,'asc'] ], |
18 |
"aaSorting": [ [2,'desc'], [3,'asc'] ], |
19 |
"aoColumnDefs": [ |
19 |
"aoColumnDefs": [ |
20 |
{ "aTargets": [ 8 ], "sType": "natural" }, |
20 |
{ "aTargets": [ 0,1,2,8 ], "sType": "natural" }, |
21 |
{ "aTargets": [ 3 ], "sType": "anti-the" } |
21 |
{ "aTargets": [ 3 ], "sType": "anti-the" }, |
22 |
], |
|
|
23 |
"aoColumns": [ |
24 |
null, |
25 |
null, |
26 |
null, |
27 |
{ "sType": "anti-the" }, |
28 |
null, |
29 |
null, |
30 |
null, |
31 |
null, |
32 |
null |
33 |
], |
22 |
], |
34 |
"sPaginationType": "four_button" |
23 |
"sPaginationType": "four_button" |
35 |
})); |
24 |
})); |
36 |
- |
|
|