ajax.reload does not show message loadingRecords
ajax.reload does not show message loadingRecords

I tried to clear the data in the table first:
table.clear().draw();
the data is cleared and the message appears emptyTable.
table.ajax.reload()
the inscription does not change to loadingRecords
after executing the query, the data is correctly displayed in the table
when the user just gets to the page and the initial data loading occurs, the inscription is there
How can I make it so that the user is shown a message that the data is loading?
Answers
I would suggest using
processing
instead. TheloadRecords
message is currently only ever shown on the first load - there is no option to have it display at other times. Theprocessing
indicator should be used instead.Allan