Last page always shows the loading overlay in IE

Last page always shows the loading overlay in IE

ssushmassushma Posts: 2Questions: 2Answers: 0
edited July 2014 in Free community support

This is my code:

$("#reports").dataTable({
"bProcessing": true,
"bServerSide": true,
"sAjaxSource": '/WebReports/getReportsForClient',
"fnServerData": function ( sSource, aoData, fnCallback ) {
$.getJSON( sSource, aoData, function (json) {
fnCallback(json);
}).error(function(jqXHR) {
document.getElementById("serverError").style.display='block';
});
},
"bFilter": false,
"sDom": '<"top"ilp>rt<"bottom"f><"clear">',
"sPaginationType": "full_numbers" ,
"aoColumns": [{"mData": "createdDate"},{"mData": "documentDescription"},{"mData": "documentSize"},{
"bSortable": false, "mData": null, "bSearchable": false, "mRender": function (data) {
return '<a href="#"><img alt="View/Download" onclick="changeHasReadFont('+data.DT_RowId+');return false;" ass="view" src="pdf16.png" /></a>';
}
}]

});

And I have customised sProcessing tag in jquery.dataTables.js like this :

"sProcessing": "

image
Loading, please wait...

",

The overlay never disappears for the last button while paginating. It just strucks surrounding the table. It happens only in IE. Please let me now where to change to get rid of this.

This discussion has been closed.