Releases: handsontable/ngHandsontable
Releases · handsontable/ngHandsontable
0.13.2
0.13.1
0.13.0
Major changes:
- Upgrade Handsontable to ~0.28.0;
- Published package to npm as ng-handsontable.
0.12.0
0.11.1
0.11.0
0.10.0
Major changes:
- Updated to Handsontable 0.24.0 (see release note)
0.9.0
Major changes:
- Updated to Handsontable 0.23.0 (see release note)
0.8.0
Major changes:
- Updated to Handsontable 0.22.0 (see release note)
0.7.0
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>