expressions.js 1.58 KB
$(document).ready(function() {
    // Setup - add a text input to each footer cell
    $('#expressions tfoot th').each( function () {
        var title = $(this).text();
        $(this).html( '<input type="text" placeholder="'+title+'" />' );
    } );

    // DataTable
    var table = $('#expressions').DataTable({
        "processing": true,
        "serverSide": true,
        "ajax": ajax_expressions,
        "oLanguage": {
            "sSearch": "Wyszukaj:",
            "sZeroRecords": "Brak wyników do wyświetlenia",
            "sInfo": "_TOTAL_ wpisów do pokazania (_START_ do _END_)",
            "sInfoFiltered": "(odfiltrowane z _MAX_ wpisów)",
            "oPaginate": {
                "sPrevious": "Poprzednie",
                "sNext": "Następne"
            },
            "sLengthMenu": 'Pokaż _MENU_ wpisów',
            "sProcessing": 'Ładowanie...'
        },
        "columnDefs": [
            { "orderable": false, "targets": 1 },
            { "orderable": false, "targets": 2 }
        ]
     });

    table.on('processing.dt', function(e, settings, processing) {
        $('#expressionInfo').empty();
    });

    $('#expressions tbody').on('click', 'tr', function() {
        var data = table.row(this).data();
        $('#expressionInfo').load(ajax_expression_info, 'id='+data[3]);
    });

    // Apply the search
   table.columns().every( function () {
        var that = this;

        $('input', this.footer()).on('keyup change', function() {
            if (that.search() !== this.value) {
                that.search(this.value).draw();
            }
        } );
    } );
} );