Skip to content

Releases: hjalmers/angularjs-generic-table

v1.3.0

14 Jul 14:39
Compare
Choose a tag to compare

[1.3.0] - 2016-07-14

Breaking changes

  • Changed module name form 'generic.table' to 'angular.generic.table'. Source files have been changed to angular-generic-table.css and angular-generic-table.js.

v1.2.1

14 Jul 09:23
Compare
Choose a tag to compare

[1.2.1] - 2016-07-14

Added

  • Support for passing array with object keys i.e. columns to export function

Fixed

  • export settings and column order wasn't re-added to field definition when table structure was updated

v1.2.0

12 Jul 18:05
Compare
Choose a tag to compare

[1.2.0] - 2016-07-12

Added

  • Support for table search
  • Support for table filters

v1.1.0

12 Jul 18:00
Compare
Choose a tag to compare

[1.1.0] - 2016-07-05

Added

  • Support for expanding rows i.e. open/close rows
  • Support for compiling fields
  • Classes for even/odd rows

Breaking changes

  • Not really a breaking change, but the render function has been altered and now uses a directive. If your app uses sanitize for html content in the render function, you don't have to do so any more, in fact you'll probably have to remove it in order for the directive to work properly. I.e. remove $sce.trustAsHtml('<div>...</div>') from the render function.

v1.0.9

04 Jul 06:54
Compare
Choose a tag to compare

[1.0.9] - 2016-07-04

Fixed

  • Missing files due to commit error

v1.0.8

31 May 14:35
Compare
Choose a tag to compare

[1.0.8] - 2016-05-31

Fixed

  • Missing files due to commit error

v1.0.7

31 May 12:39
Compare
Choose a tag to compare

[1.0.7] - 2016-05-31

Added

  • Support for custom display function for export to CSV
  • Table wrapper that can be used for table scroll

v1.0.6

25 May 07:44
Compare
Choose a tag to compare

[1.0.6] - 2016-05-25

Added

  • Support for reusing or forcing sorting when table structure is updated using $scope.$broadcast('gt-update-structure:tableId', table); where table should be an object containing 'settings' (array) and 'fields' (array) and optionally 'forceSorting' (boolean)

v1.0.5

24 May 14:58
Compare
Choose a tag to compare

[1.0.5] - 2016-05-24

Added

  • Support for adding class names to table element

Fixed

  • Initial sorting

v1.0.4

17 May 06:56
Compare
Choose a tag to compare

[1.0.4] - 2016-05-16

Added

  • Support for multiple tables within same controller

Breaking changes

  • Event listeners in generic-table have changed, to update table data, settings etc. you need to pass an unique id (gt-id) ie. $scope.$broadcast('gt-update-table:tableId', data);