constraint.js (380B)
1 $(document).ready(function() { 2 $.fn.dataTableExt.afnFiltering.length = 0; 3 var options = { 4 lengthChange: false, 5 ordering: true, 6 paging: config.pagination, 7 pageLength: 50, 8 autoWidth: true, 9 processing: true, 10 order: [[ 0, "asc" ]] 11 } 12 $('#fk_table').DataTable(options); 13 $('#check_table').DataTable(options); 14 } );