NgHandsontable Versions Save

Official AngularJS directive for Handsontable

0.13.2

3 years ago

Major changes:

  • Add support for Handsontable v8.

0.13.1

3 years ago

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

7 years ago

Major changes:

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

0.12.0

7 years ago

Major changes:

  • Upgrade Handsontable to ~0.25.0.

0.11.1

7 years ago

Major changes:

0.11.0

7 years ago

Due to some technical problems 0.11.0 was omitted.

0.10.0

8 years ago

Major changes:

0.9.0

8 years ago

Major changes:

0.8.0

8 years ago

Major changes:

0.7.0

8 years ago

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