Datatables Empty th/hidden tag after second call onward on IE

Datatables Empty th/hidden tag after second call onward on IE

rathore_geerathore_gee Posts: 14Questions: 5Answers: 0
edited December 2015 in Free community support

Data tables show empty th after second and onward call to load data only on IE
work fine on chrome
please help

Here is code:
/***********************************************************************
dt.DataTable({
destroy: true,
searching: true,
bLengthChange: true,
bPaginate: true,
bInfo: false,
scrollX: false,
responsive: true,
multipleSelection: false,
processing: false,

initComplete: function(settings, json) {
    self.dt = this;

},
ajax: {
    "url": urlstring,
    "type": "GET"
},
columns: [{
    "data": "BRANCH"
}, ],

columnDefs: [{
        targets: 0,
        searchable: true,
        sortable: true,
        width: "56px"
    }

]

});

This discussion has been closed.