source: main/waeup.kofa/branches/uli-async-update/src/waeup/kofa/browser/static/datatable.js @ 9169

Last change on this file since 9169 was 9169, checked in by uli, 12 years ago

Merge changes from trunk, r8786-HEAD

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.