Processing indicator in dom
Processing indicator in dom
trongart
Posts: 222Questions: 51Answers: 0
Is is possible to display the processing indicator inside the dom after i Table information summary and in the same row? The goal is to display the text "Processing" only there when the table is loading.
Test case: https://live.datatables.net/yaxocasi/1/edit
This question has an accepted answers - jump to answer
Answers
The
Loading...
that appears is the loading indicator for Ajax loaded data for client side processing. Its not the processing indicator. See thelanguage.loadingRecords
for more details. It is placed in an emptytr
in the table.One option is to set
language.loadingRecords
to an empty string and create a toolbar element that shows the loading string you want. IninitComplete
you can empty the element.https://live.datatables.net/tazolohe/1/edit
Likely some styling will need to be applied for your page.
Kevin
Amazing- Thank you!