Releases: handsontable/ngHandsontable
Releases · handsontable/ngHandsontable
0.7.0-beta3
0.7.0-beta2
0.7.0-beta1
Major changes:
-
Attributes defined in camelCase style will no longer be supported.
<!-- Before: --> <hot-table datarows="db.items" contextMenu="true" minSpareRows="minSpareRows" readOnlyClassName="'read-only'"> <hot-column data="id" readOnly title="'ID'"></hot-column> <hot-column data="isActive" title="'Is active'" type="'checkbox'" width="65" checkedTemplate="'Yes'" uncheckedTemplate="'No'"></hot-column> </hot-table> <!-- After: --> <hot-table datarows="db.items" context-menu min-spare-rows="minSpareRows" read-only-class-name="'read-only'"> <hot-column data="id" read-only title="'ID'"></hot-column> <hot-column data="isActive" title="'Is active'" type="'checkbox'" width="65" checked-template="'Yes'" unchecked-template="'No'"></hot-column> </hot-table>
-
From now Handsontable hooks (callbacks) are available with
on-
prefix.<!-- Before: --> <hot-table datarows="db.items" afterInit="afterInitFn" afterRender="afterRenderFn"> <hot-column data="id" readOnly title="'ID'"></hot-column> </hot-table> <!-- After: --> <hot-table datarows="db.items" on-after-init="afterInitFn" on-after-render="afterRenderFn"> <hot-column data="id" read-only title="'ID'"></hot-column> </hot-table>
-
Updated to Handsontable 0.17.0.
0.6.0
0.5.2
0.5.1
Major changes:
- Updated to Handsontable 0.12.3
- Updated to angular 1.3.8
- Added Jshint
- Fixed refresh data after ajax request
- Fixed refresh (render) table after property change
- Added support for foo["bar"] notation in json
- Refreshed demo page available at http://handsontable.github.io/ngHandsontable/
0.5.0
Major changes:
- removed old jquery-handsontable.js and jquery-handsontable.css from dependencies: we replaced them with the new versions of those files
- removed jQuery from dependency
- fixed the minified version
- refreshed demo page available at http://handsontable.github.io/ngHandsontable/
0.4.0
First update in many months! Now we want to do it more regularily. Major changes:
- renamed the library to ngHandsontable
- jquery-handsontable is still required, but it is no longer part of the ngHandsontable build. You need to load
jquery-handsontable.full.js
it before loadingngHandsontable.js
- works with jquery-handsontable 0.11.3, which release notes are available at https://github.com/handsontable/jquery-handsontable/releases (previous version of ngHandsontable used jquery-handsontable 0.9.19)
- the code is 99% rewritten and separated into directives and a service
- refreshed demo page available at http://handsontable.github.io/ngHandsontable/