How to display processing loader on custom button click
How to display processing loader on custom button click
hafizctn
Posts: 5Questions: 3Answers: 0
Is there a way I can display processing loader when clicked on a custom button?
text: '<i class="fa fa-trash"></i> Delete Selected',
enabled: false,
action: function () {
//show loader/processing
if (!confirm('Are you sure want to delete selected items?')) {
return;
}
//hide loader/processing
}
This question has an accepted answers - jump to answer
Answers
This thread should help you out:
https://datatables.net/forums/discussion/comment/172441/
Thank you for the reply, I am already using a similar solution. I was wondering if we can somehow trigger built in processing of Datatables with some javascript.
Use this plugin.
Kevin