utils.js 2.52 KB
function editMeaning(id) {
    $("#edit-meaning-dialog").load(ajax_edit_meaning_form, "id="+id).dialog('open');
}

function saveMeaning(id) {
    var comment = null;
    var status = null;

    var this_form = $('.edit-meaning-form');
    var form_data = this_form.serializeArray();
    $.map(form_data, function(elem) {
        if (elem.name == 'status')
          status = elem.value;
        else if (elem.name == 'comment')
          comment = elem.value;
    });

    $.post(ajax_meaning_form_submit, {id: id, status: status, comment: comment},
        function(result){
            $('#meaningsInfo').empty();
            $('#meaningsInfo').load(ajax_refresh_meanings, 'id='+id)
            $("#edit-meaning-dialog").dialog('close');
        }
    );
}

$(document).ready(function() {

    // Setup - add a text input to each footer cell
    $('#expressions tfoot th').each( function (index, value) {
        if (index != 0) {
            var title = $(this).text();
            $(this).html( '<input type="text" placeholder="'+title+'" />' );
        }
    });

    // DataTable
    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": "",
            "sInfoEmpty": "",
            "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) {
        $('#meaningsInfo').empty();
    });

   $('#expressions_filter input').unbind();
   $('#expressions_filter input').bind('keyup', function(e) {
       if(e.keyCode == 13) {
        table.search(this.value).draw();
    }
   });

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

        $('input', this.footer()).bind('keypress', function(e) {
            if (e.which == 13 && that.search() !== this.value) {
                that.search(this.value).draw();
            }
        });
    });

    $("#edit-meaning-dialog").dialog({
        title: "Edycja znaczenia:",
        width: "auto",
        autoOpen: false
    });

});