source: main/waeup.kofa/trunk/src/waeup/kofa/browser/static/datatable.js @ 9074

Last change on this file since 9074 was 9074, checked in by Henrik Bettermann, 12 years ago

Fix export finished file name.

Sort files by upload date.

File size: 418 bytes
Line 
1$(document).ready(function(){
2  $('.dataTable').dataTable();
3
4        $('.dataTableFiles').dataTable( {
5                "aaSorting": [[ 2, "desc" ]],
6        } );
7
8        $('.dataTableManage').dataTable( {
9                "aaSorting": [[ 1, "asc" ]],
10                "aoColumnDefs":[{ "bSortable": false, "aTargets": [ 0 ] }]
11        } );
12
13        $('.dataTableManageFiles').dataTable( {
14                "aaSorting": [[ 3, "desc" ]],
15                "aoColumnDefs":[{ "bSortable": false, "aTargets": [ 0 ] }]
16        } );
17
18
19});
20
Note: See TracBrowser for help on using the repository browser.