Buttons stuck on loading when I click on them... any reason why?

Buttons stuck on loading when I click on them... any reason why?

eilonash92eilonash92 Posts: 5Questions: 2Answers: 0

When I click the button "Excel" for example, there are 2 arrows spinning like it's loading.
Although, it's stuck.. I tried a few times but nothing..
Any ideA?

$(document).ready( function () {
var table = $('#ServerTable').DataTable( {
"dom": 'B<"top"fi>rt',

            buttons: [
                'copy', 'excel'
            ],

            "paging":   false,



    "columnDefs": [
                { targets: [0, 9], "orderable": false},
                {
                    type: 'natural',
        "searchable": true,
        "orderable": true,
        "targets": 1,




    } ],
    "order": [[ 1, 'asc' ]]
} );

This question has an accepted answers - jump to answer

Answers

This discussion has been closed.