Processing Message Stuck on Grid Reload

Processing Message Stuck on Grid Reload

fadijohnfadijohn Posts: 1Questions: 1Answers: 0

I've "successfully" implemented DataTables into my app. The grid loads completely fine initially from the server with no problems. However, when I call the ajax.reload(); method on my grid, the Processing message is stuck there, almost as if the JSON is bad or the call to the server failed.

I checked the JSON both on the initial call and after the ajax.reload() call and it's exactly the same both times - no JSON errors at all, the exact same JSON string.

Why on the subsequent call to the server, even with the same exact JSON returned both times, does the Processing message stick?

Here's my code:

[code]

var objUserTotalsTable = $('#tbl-qmes-tasking-user-totals').DataTable({
processing: true
info: false,
serverSide: true,
ordering: false,
paging: false,
searching: false,
ajax: {
url: "Models/crud/Reports/qmes-tasking-select.aspx",
data: {
valSwitch: "user_totals"
},
}
});

[/code]

Answers

This discussion has been closed.