Releases: l-lin/angular-datatables
Releases · l-lin/angular-datatables
v0.6.1
v2.1.0
v0.6.0
v2.0.1
v0.5.6
v0.5.5
This release contains the following:
- Correct bootstrap plugin css reference in bower.json #679
- Fixed example in docs - changed 'withLabel()' to 'withTitle()' #697
- Update package.json with new datatables packages #688
- Update documentation #703 #777
- Fix datatables dependency to
datatables.net
instead ofdatatables
#766 - Correct when working with
debugInfoEnabled
#746 - Add
DTDefaultOptions.setOption
#796
angular.module('myModule', ['datatables']).run(function(DTDefaultOptions) {
DTDefaultOptions.setOption('dom', 'lpfrtip');
});
v0.5.4
This release contains the following:
- Fix buttons when options is not defined #603
- Fix some documentation #595 #600 #608
- Re-render table error missing argument 'scope' #621
- Set default DOM options in DTDefaultOptions #632
angular.module('myModule', ['datatables']).run(function(DTDefaultOptions) {
DTDefaultOptions.setDOM('lpfrtip');
});
v0.5.3
This release contains the following:
- Ensure that prerender is called after loadData from promise #563
- Correct
reloadData
that triggers the disappearance of the pagination #549- In order to correct this issue, a
<div class="dt-loading">
has been added that wraps the loading message (fromDTLoadingTemplate
. The default loading message is now:
- In order to correct this issue, a
<div class="dt-loading">
<h3>Loading...</h3>
</div>
The <h3>Loading...</3>
is still customizable. See the documentation.
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" />');
}
v0.5.1
This release contains the following:
- Correct angular renderer without option #439
- Correct ngTranslate support for newColumn #440
- Correct changing columnDefs #329
- Correct loading message for multiple dt #355
- Correct changing columns after changeData #359
- Add Buttons and Select support #428
- Deprecate ColVis & TableTools
- Fix characters in angular-datatables.js #470
- Add commonJS support #464