plugin column filter traslate problem

plugin column filter traslate problem

fabbricianifabbriciani Posts: 1Questions: 1Answers: 0

if i use column filter plugin with italian traslation, the filter (on columns) does not work.

$(document).ready(function() {
    // Setup - add a text input to each footer cell
    $('#example tfoot th').each( function () {
        var title = $('#example thead th').eq( $(this).index() ).text();
        $(this).html( '<input type="text" placeholder="Cerca" />' );
    } );

    // DataTable
    var table = $('#example').DataTable({


            dom: 'T<"clear">lfrtip',
            tableTools: {
                "sSwfPath": "testTableMedia/extensions/TableTools/swf/copy_csv_xls_pdf.swf"
            }

            ,

             "language": {
                    "url": "testTableMedia/Italian.json"
                }

        });
This discussion has been closed.