Override Loading template

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('datatablesSampleApp', ['datatables']). factory('DTLoadingTemplate', function() { return { html: '' }; });