Why only paging is not working

Why only paging is not working

emrecandanemrecandan Posts: 1Questions: 1Answers: 0
edited October 2016 in Free community support

In below code, only paging is not wotking. Is there any fix for this? Thank you.

      var data = '';
        $.ajax({ type: "POST",   
                 url: "getData.php",   
                 async: true,
                 success: function(data) {
                        $("#result").html(data);
                        $('#mytable').DataTable({
                                "language": {
                                "url": "//cdn.datatables.net/plug-ins/9dcbecd42ad/i18n/Turkish.json"
                                        },
                                });
                        }
            });

Answers

  • allanallan Posts: 63,540Questions: 1Answers: 10,476 Site admin

    Thanks for your question - however, per the forum rules can you link to a test case showing the issue please. This will allow the issue to be debugged.

    Information on how to create a test page, if you can't provide a link to your own page can be found here.

    Thanks,
    Allan

This discussion has been closed.