So I am using the JQuery DataTables plugin, and have configured it to use AJAX to get the data. It works great! However, oddly enough, when accessing a table that contains only 360 records, it gives me this white dialog window at the top of the table that says 'Processing...'. But I am immediately able to jump to the very last page of the records and see them withou开发者_如何转开发t an issue. However, the processing window wont disappear! Any idea how to close it?
Can't find anything in the documentation about it.
Ensure you are returning the same sEcho
value in your JSON response, that DataTables sent with the AJAX call.
If you don't want to display the Processing message at all times, you could set the property "bProcessing : false" while declaring the datatable.
精彩评论