Datatable
Datatable copied to clipboard
Adding gif loader
Any idea of adding gif loader in chumper data-table while searching in the search box. If the data are like 10000 it takes while to be fetched and the user might feel awkward of the data table might be failing
You can try to use this one. Now it's work for me
Javascript.blade.php
jQuery(document).ready(function(){
// dynamic table
var oTable = jQuery('#{{ $id }}').dataTable({
'fnServerParams': function(aoData) {
addProcessing();
},
"fnDrawCallback": function (oSettings) {
removeProcessing();
},
. . . .