How to display processing indicator?
How to display processing indicator?
Hi all.
This has been discussed countless of times but as far as I see, all are related to first rendering of the table, i.e. loading the data. But I would like to display a processing indicator during single edits. For example in the inline editing mode, you changed the value of a cell, you press enter button, now it would display for example a spinner and a success message when it is successfully saved.
I tried custom ajax complete and beforeSend methods but as I said, they work only when loading the whole data for the first time.
This is a client-side setup.
This question has an accepted answers - jump to answer
Answers
For Editor, you could use events to that. You could start the processing indicator with
preSubmit
and remove it withsubmitComplete
.Colin