Releases: hjalmers/angularjs-generic-table
Releases · hjalmers/angularjs-generic-table
v1.5.1
v1.5.0
[1.5.0] - 2017-03-21
Breaking changes
- Changed package name from
angular-generic-table
toangularjs-generic-table
to avoid conflict with version for angular 2+. In order to get everything to work you need to update references to generic-table source files in your code.
v1.4.4
v1.4.3
v1.4.2
v1.4.1
v1.4.0
[1.4.0] - 2016-08-30
Breaking changes
- Expand property in field settings is no longer used to define which directive to use when expanding/opening a row, just pass true if clicking column should expand row. Use gtExpand attribute to pass and object containing which directive to use and optionally, if multiple rows should be allowed, add that property as well like this:
expandConfig:{ directive:'<my-custom-directive></my-custom-directive>', multiple:true // false by default }
Added
- Support for responsive layout using stacked columns
- Support for custom sort function
- Support for only having one row expanded/opened at a time
Fixed
- Sorting of null vales
Improved
- Removed some unnecessary two-way-bindings and watches
- Scopes created using $compile are now removed along with their watches (if any)
v1.3.3
[1.3.3] - 2016-08-19
Fixed
- Compile error
- Sorting will now be reset unless ctrl-key or meta-key (mac) is pressed while sorting
Added
- Excel export will by default escape unsafe methods, use new setting
exportEscapeString
to override - Support for passing scope to compile function, can be used for two way binding of table data
- Support for custom search function, this function is used to set column value when searching the table