Releases: hjalmers/angularjs-generic-table
Releases · hjalmers/angularjs-generic-table
v1.3.0
v1.2.1
v1.2.0
v1.1.0
[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
v1.0.8
v1.0.7
v1.0.6
[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
v1.0.4
[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);