Skip to content

Releases: handsontable/ngHandsontable

0.7.0-beta3

05 Oct 19:11
Compare
Choose a tag to compare

Major changes:

  • Updated to Handsontable 0.19.0

Changes:

  • Fixed Infinite $digest Loop (#114)
  • Added support for 'handsontable' cells type (#115)

0.7.0-beta2

11 Sep 07:32
Compare
Choose a tag to compare

Major changes:

  • Updated to Handsontable 0.18.0
  • Fixed IE problem while using context menu (#112)
  • Fixed problems with afterChange hook which was triggered twice on data change (#106)

0.7.0-beta1

27 Aug 13:06
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>
  • Updated to Handsontable 0.17.0.

0.6.0

13 Jul 18:15
Compare
Choose a tag to compare

Major changes:

  • Updated to Handsontable 0.16.0 with solves occuring errors (#87, #77, #66)
  • Updated to angular 1.4

0.5.2

13 Jul 18:22
Compare
Choose a tag to compare

Major changes:

  • Updated to Handsontable 0.14.1
  • Updated to angular 1.3.15
  • Fixed ng attributes and changed to data-ng-attributes

0.5.1

20 Jan 17:48
Compare
Choose a tag to compare

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

12 Dec 12:40
Compare
Choose a tag to compare

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

01 Oct 21:52
Compare
Choose a tag to compare

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 loading ngHandsontable.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/

v0.3.17

01 Oct 10:00
Compare
Choose a tag to compare

Upgrade Handsontable to 0.9.19 (see changelog)

Includes:

  • improved native vertical scrollbar (use directive scrollbarModelV="'native'")
  • new plugin hook afterRenderer

v0.3.16

01 Oct 10:00
Compare
Choose a tag to compare

Upgrade Handsontable to 0.9.14 (see changelog)