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