Want to show loader GIF in datatables

后端 未结 2 857
孤独总比滥情好
孤独总比滥情好 2021-02-02 11:39

I\'m using datatables. My code is working fine. Now I want to add a loader image (gif). I don\'t know how to add this. Here is my datatable script so far.

$(d         


        
2条回答
  •  一向
    一向 (楼主)
    2021-02-02 12:19

    In datatables 1.10 and onwards, you should use:

    $('#example').dataTable({
      language: {
         processing: ""
      },
      processing: true
    });
    

    Not required as of today, but more standard given the new documentation. The project changed from using Hungarian notation to standard camelCase in the most recent update. Of interest:

    Please note that the Hungarian notation option is deprecated and will be removed in future versions of the extensions (on the extension's next major version update - i.e. 1.x to 2.x, although 2.x is not planned for a long time to come - plenty of life in the 1.x series still!). The documentation for the extensions will be updated to remove the Hungarian notation before that point.

提交回复
热议问题