This repository was archived by the owner on Feb 2, 2025. It is now read-only.
v0.5.2
This release contains the following:
- Ensure DTRendererService.preRender is called when using "The Angular Way" #502
- Add support for directives in the DTLoadingTemplate #529
- Instead of overriding the
DTLoadingTemplate
factory, you will need to initialize like this;
- Instead of overriding the
angular.module('showcase', ['datatables'])
.run(initDT);
function initDT(DTDefaultOptions) {
DTDefaultOptions.setLoadingTemplate('<img src="images/loading.gif" />');
}