Changeset 11038 for main/waeup.kofa/branches/uli-diazo-themed/layout
- Timestamp:
- 3 Feb 2014, 08:06:34 (11 years ago)
- Location:
- main/waeup.kofa/branches/uli-diazo-themed/layout/static
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.kofa/branches/uli-diazo-themed/layout/static/css/base.css
r11033 r11038 227 227 } 228 228 229 .dataTables_length {230 display: none;231 }232 233 229 .dataTables_filter input { 234 230 width: 60%; -
main/waeup.kofa/branches/uli-diazo-themed/layout/static/js/kofa-datatables.js
r11017 r11038 1 1 $(document).ready(function(){ 2 $('.dataTable').dataTable(); 2 3 $('.dataTable').dataTable( { 4 "iDisplayLength": 1000, 5 "iDisplayEnd": 1000, 6 "aLengthMenu": [ 50, 100, 1000, 5000 ], 7 } ); 3 8 4 9 $('.dataTableFiles').dataTable( { 5 "aaSorting": [[ 2, "desc" ]], 10 "aaSorting": [[ 2, "desc" ]], 11 "iDisplayLength": 1000, 12 "iDisplayEnd": 1000, 13 "aLengthMenu": [ 50, 100, 1000, 5000 ], 6 14 } ); 7 15 8 16 $('.dataTableManage').dataTable( { 9 "aaSorting": [[ 1, "asc" ]], 10 "aoColumnDefs":[{ "bSortable": false, "aTargets": [ 0 ] }] 17 "aaSorting": [[ 1, "asc" ]], 18 "aoColumnDefs":[{ "bSortable": false, "aTargets": [ 0 ] }], 19 "iDisplayLength": 1000, 20 "iDisplayEnd": 1000, 21 "aLengthMenu": [ 50, 100, 1000, 5000 ], 11 22 } ); 12 23 13 24 $('.dataTableManageFiles').dataTable( { 14 "aaSorting": [[ 3, "desc" ]], 15 "aoColumnDefs":[{ "bSortable": false, "aTargets": [ 0 ] }] 25 "aaSorting": [[ 3, "desc" ]], 26 "aoColumnDefs":[{ "bSortable": false, "aTargets": [ 0 ] }], 27 "iDisplayLength": 1000, 28 "iDisplayEnd": 1000, 29 "aLengthMenu": [ 50, 100, 1000, 5000 ], 16 30 } ); 17 31
Note: See TracChangeset for help on using the changeset viewer.