Skip to content

Releases: l-lin/angular-datatables

v2.1.0

10 Feb 23:29
Compare
Choose a tag to compare

This release contains the following:

  • Update documentation
  • Rename rm to rimraf for compatibility under windows #966
  • Version number update to remove npm warn: "requires a peer of" #966
  • Remove the unnecessary $.extend of default options which is buggy when using bootstrap extension #966

v0.6.0

22 Jan 21:10
Compare
Choose a tag to compare

This release contains the following:

  • Fix angular-datatables for angular 1.6+ #921
    • The version 0.6.0 is now only compatible from angular version 1.6.0+. ⚠️ Older version may not work!
  • Fix NPM dependency #943

v2.0.1

26 Dec 22:59
Compare
Choose a tag to compare

Angular2 support!

v0.5.6

09 Dec 09:05
Compare
Choose a tag to compare

This release contains the following:

  • Added $ to the ng-repeat directive comment regex #893
  • Add angular-datatables.css in bower #856

v0.5.5

02 Sep 08:16
Compare
Choose a tag to compare

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 of datatables #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

04 Apr 16:38
Compare
Choose a tag to compare

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');
});
  • Add missing angular-datatables.css #634
  • Correct NPM Package Issue #645
  • Use DataTable v1.10+ syntax instead of old ones #650
  • Fix angular-datatables.js Encoding inconsistencies and invisible characters #665 #669

v0.5.3

26 Jan 13:10
Compare
Choose a tag to compare

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 (from DTLoadingTemplate. The default loading message is now:
<div class="dt-loading">
    <h3>Loading...</h3>
</div>

The <h3>Loading...</3> is still customizable. See the documentation.

v0.5.2

15 Dec 15:00
Compare
Choose a tag to compare

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;
angular.module('showcase', ['datatables'])
.run(initDT);

function initDT(DTDefaultOptions) {
    DTDefaultOptions.setLoadingTemplate('<img src="images/loading.gif" />');
}
  • Correction on the loading message #528
  • New datatables bower distribution #526
  • Correction with the extension Buttons where the buttons disappear when using the angular renderer #502
  • Correct the extension FixedColumns with the angular renderer #254
    • ⚠️ version 3.1.0+ of FixedColumns is needed

v0.5.1

27 Oct 08:14
Compare
Choose a tag to compare

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

v0.5.0

07 Sep 09:49
Compare
Choose a tag to compare

This release contains the following:

  • Removing the DTInstances.getLast() and DTInstances.getList() as they are deprecated #315
  • Add MIT licence in bower.json #317
  • Update examples:
    • how to pass an object in the ng-click in the renderWith function #145
    • how to switch language when using angular-translate #351
    • how to add a custom button in the DT DOM #402
    • Fix fixedHeader example #372
    • Fix the row select example
  • add the $elem in the parameter of _redrawRows #321
  • Destroy the child scope when data is refreshed in the "Angular way" #326
  • Add support for commonjs #332
  • Correct the usage of DTDefaultOptions.setLanguageSource with the Angular renderer #356
  • Add support for Light column filter #431
  • Throw an error if the option serverSide is set to true and the table is not renderer by the Ajax renderer
  • Avoid exception when using multiple datatables with the Angular renderer #310