Override Loading template

There are two loading with angular-datatables:

When loading data, the angular module will display by default <h3 class="dt-loading">Loading...</h3>.

You can make your own custom loading html by override the DTLoadingTemplate like this:

angular.module('showcase', ['datatables']). factory('DTLoadingTemplate', dtLoadingTemplate); function dtLoadingTemplate() { return { html: '' }; }