Skip to content

Releases: handsontable/ngHandsontable

0.13.2

01 Sep 07:24
0ddfdb8
Compare
Choose a tag to compare

Major changes:

  • Add support for Handsontable v8.

0.13.1

20 Aug 09:10
7decaaf
Compare
Choose a tag to compare

Major changes:

  • Fixed memory leak which occurs when the hot-table's parent scope was destroyed or the DOM element was removed (#157).

0.13.0

26 Oct 08:00
Compare
Choose a tag to compare

Major changes:

  • Upgrade Handsontable to ~0.28.0;
  • Published package to npm as ng-handsontable.

0.12.0

25 May 14:08
Compare
Choose a tag to compare

Major changes:

  • Upgrade Handsontable to ~0.25.0.

0.11.1

20 May 07:31
Compare
Choose a tag to compare

Major changes:

  • Upgrade Handsontable to ~0.24.0.
  • Fixed bug related with datarows checking when data was replaced with the same values (#129, @deenairn).

0.11.0

20 May 07:25
Compare
Choose a tag to compare

Due to some technical problems 0.11.0 was omitted.

0.10.0

08 Apr 14:22
Compare
Choose a tag to compare

Major changes:

0.9.0

03 Mar 15:38
Compare
Choose a tag to compare

Major changes:

0.8.0

11 Feb 15:42
Compare
Choose a tag to compare

Major changes:

0.7.0

15 Oct 10:41
Compare
Choose a tag to compare

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>

Changes:

  • Fixed IE problem while using context menu (#112)
  • Fixed problems with afterChange hook which was triggered twice on data change (#106)
  • Fixed Infinite $digest Loop (#114)
  • Added support for 'handsontable' cells type (#115)
  • Updated to Handsontable 0.19.0