Datatable icon indicating copy to clipboard operation
Datatable copied to clipboard

Adding gif loader

Open sujit223 opened this issue 9 years ago • 1 comments

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

sujit223 avatar Feb 04 '16 05:02 sujit223

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();
        },

. . . .

userhuman avatar Aug 09 '16 10:08 userhuman