Changeset 9074 for main/waeup.kofa/trunk/src/waeup/kofa/browser/static
- Timestamp:
- 28 Jul 2012, 04:47:58 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.kofa/trunk/src/waeup/kofa/browser/static/datatable.js
r7811 r9074 1 1 $(document).ready(function(){ 2 $('.dataTable').dataTable(); 2 $('.dataTable').dataTable(); 3 4 $('.dataTableFiles').dataTable( { 5 "aaSorting": [[ 2, "desc" ]], 6 } ); 7 3 8 $('.dataTableManage').dataTable( { 4 9 "aaSorting": [[ 1, "asc" ]], 5 10 "aoColumnDefs":[{ "bSortable": false, "aTargets": [ 0 ] }] 6 11 } ); 12 13 $('.dataTableManageFiles').dataTable( { 14 "aaSorting": [[ 3, "desc" ]], 15 "aoColumnDefs":[{ "bSortable": false, "aTargets": [ 0 ] }] 16 } ); 17 18 7 19 }); 8 20
Note: See TracChangeset for help on using the changeset viewer.