Tutorial: Release notes

Release notes

4.0.0

Released on 13th of June, 2018

Breaking changes
  • Changed the default values for the following configuration options (#5135)
    • autoInsertRow (was: true, is: false)
    • autoWrapCol (was: false, is: true)
    • autoWrapRow (was: false, is: true)
  • Updated our number-handling dependency, Numbro to the latest version. (#5081, #77)
    In order to keep your implementation working correctly, you'll need to update the Numbro 2.x-compatible language files.

    For more information on those, take a look at the Numbro documentation.

Changes
  • Updated the API documentation for the language settings. (#5099)
  • Added a Norwegian translation to Handsontable. (#4694)
  • Fixed a problem with the IME API, where an unwanted first character remained in the editor. (#4662)
  • Fixed a bug, where there was a way to break the allowInvalid option, by making two editors active. (#4551)
  • Fixed a problem with incomplete table rendering after sorting columns. (#4062)
  • Fixed a problem with the filtering menu state after using any checkboxes in the table. (#4780, #72)

The corresponding Handsontable version is 4.0.0.

3.0.0

Released on 16th of May, 2018

Breaking changes

The Column Sorting plugin is over the first stage of refactoring. (#5014) This resulted in the following breaking changes:

  • The main instance's sort function was moved to the plugin
  • The sortIndex property was removed from Handsontable's main instance
  • Moved the sortColumn and sortOrder properties from the main instance to the plugin
  • The sortOrder property now accepts string values (asc, desc, none), instead of booleans (true, false, undefined)

The Gantt Chart plugin had its API refactored, to allow generating year-related data for other years that the one displayed. (#67) Along the way, some of its lesser used API methods became private. Please refer to the documentation for the current state of the API.

Changes
  • Added missing type definitions for the Search Plugin. (#5039)
  • Added the Chinese (CN, TW) translations. (#5007, #4923)
  • Added the French translation. (#4777)
  • Added the Spanish (MX) translation. (#4900)
  • Fixed a problem, where an error was being thrown when using the updateSettings method. (#4988)
  • Fixed a problem, where using the TAB key removed some data, when minSpareCols was set to 1. (#4986)
  • Fixed a bug, where an infinite hook loop was being created, when the table was initialized at the bottom of the page. (#4961)
  • Fixed some issues with the CI stability. (#4925)
  • Removed some unnecessary margins from the Filtering dropdown. (#69)
  • Added an option to the Gantt Chart plugin, which allows skipping the incomplete weeks at the beginning and/or end of the month. (#65)

The corresponding Handsontable CE version is 3.0.0.

2.0.0

Released on 11th of April, 2018

Breaking changes
  • Rewritten the Search and Custom Borders plugins to ES6. (#4892, #4621)

These plugins will no longer be available from the main Handsontable instance. They will be accessible analogously to other plugins, as hot.getPlugin('search') and hot.getPlugin('customBorders').

Changes
  • Added the beforeContextMenuShow hook, triggered within the Context Menu plugin. (#4973)
  • Fixed problems with disappearing selection handles on mobile devices. (#4943, #4936)
  • Fixed a problem, where clicking on links inside cells was not possible on mobile devices. (#4570)
  • Fixed a bug, where sorting didn't work when filtering was applied (#4170)
  • Fixed a problem with selecting entire columns, when multiple column header levels are declared. Mostly visible with Handsontable Pro's Nested Headers plugin. (#4951)
  • Fixed a problem, where the Context Menu was too narrow for its contents. (#4933)
  • Modified the look of the fill handle. (#4921)
  • Fixed a bug, where pressing ENTER multiple times on a merged cell at the bottom of the table was not working properly. (#4915)
  • Fixed a problem with highlighting headers, when selecting entire columns. (#4875)
  • Fixed a bug, where removing the first row of a merged cell sometimes caused an error. (#3473)
  • Added a Russian translation. (#4854)
  • Fixed a bug with handsontable editor headers overlapped the table cells. (#4787)
  • Fixed a problem, where the afterRowMove hook returned improper parameters. (#4444)
  • Fixed a bug, where the afterCreateCol hook returned a wrong amount parameter. (#4210)
  • Fixed problems with alignment and the undo/redo functionality. (#3319)
  • Fixed a problem, where selecting and entire merged cell with non-contiguous selections did not highlight that merged cell. (#4860)
  • Fixed a problem with the jsfiddle link in the issue templates. (#4983)
  • Updated the pull request templates. (#4957)
  • Added helpers for console.log, console.warn etc due to IE compatibility. (#4924)
  • Fixed a problem, where scrolling the table on Chrome on a retina display created empty spaces. (#4498)
  • Added an additional hook, beforeDropdownMenuShow for the dropdown menu plugin. (#56)
  • Fixed a problem with the Dropdown Menu being to narrow for its contents. (#49)
  • Added undo/redo test cases for the dropdown menu plugin. (#47)
  • Fixed a problem, where the size of the buttons in the dropdown menu wasn't dynamically updated. (#44)
  • Added extra parameters for the beforeFilter and afterFilter hooks. (#43)
  • Fixed a problem with the jsfiddle link in the issue template. (#58)

The corresponding Handsontable CE version is 2.0.0.

1.18.1

Released on 20th of March, 2018

Changes
  • Fixed a bug with duplicate fill handles on the edges of the table's overlays. (CE#4920)
  • Fixed a problem, where the MergeCells class was added under Core in the docs. (CE#4941)

The corresponding Handsontable CE version is 0.38.1.

1.18.0

Released on 14th of March, 2018

Breaking changes:
  • We removed the mobile editor from the repository. After this version, a standard editor will be used when using mobile devices. (CE#4911)
Changes
  • Fixed a bug, where merged cells declared outside of the table were still partially rendered. (CE#4887)
  • Added tests for mobile devices. (CE#4868)
  • Fixed a bug, where rows were not being rendered, when scrolling the table on a mobile device. (CE#4856)
  • Added some missing API for the non-contiguous selection feature. (CE#4811)
  • Change the isObjectEquals function to isObjectEqual. (CE#4387)
  • Fixed a problem with scrolling on Microsoft Edge. (CE#4320)
  • Added a proper source argument value for removing data from the table using the Backspace and Delete keys. (CE#3916, CE#3539)
  • Added a cellProperties argument for the beforeValueRender hook. (CE#4543)
  • Fixed a problem, where the Filters dropdown contained misaligned elements. (#33)

The corresponding Handsontable CE version is 0.38.0.

1.17.0

Released on 1st of March, 2018

Breaking changes:
  • The Merge Cells plugin has been rewritten to ES6 and completely refactored. Before 0.37.0 (1.17.0 with Handsontable Pro) the plugin was accessible from the mergeCells property in the main instance. After the refactor, you can access it just like every other plugin, which is with hot.getPlugin(‘mergeCells’). (#4214, #4858, #4870)

    Pre-0.37.0Post-0.37.0
    hot.mergeCellshot.getPlugin('mergeCells')
    hot.mergeCells.mergedCellInfoCollectionhot.getPlugin('mergeCells').mergedCellsCollection.mergedCells
    This update introduces new API (more information in the documentation) and four new hooks:
    • beforeMergeCells
    • afterMergeCells
    • beforeUnmergeCells
    • afterUnmergeCells

  • The merged cells are now cleared (filled with nulls). The only value that remains, is the top-left corner cell's value, which is the visible one. (#2958)
Changes
  • Added the common.css file, necessary for tests added to Handsontable CE.(#40)

The corresponding Handsontable CE version is 0.37.0.

1.16.0

Released on 16th of February, 2018

Breaking changes:

- Rewritten the PersistentState plugin to ES6. (#4618) From this version onward you can access the plugin like all regular plugins (hot.getPlugin('persistentState')), not from the main instance (the hot.storage object is now accesible from hot.getPlugin('persistentState').storage)

- Added support for selecting non-contiguous cells or ranges (#4708). That required some changes - some of them are backward incompatible:

New API
  • hot.getSelectedLast() Returns an array with coordinates of the last selected layer ([row, col, rowEnd, colEnd]). This method behaves as hot.getSelected() before the breaking change.
  • hot.getSelectedRangeLast() Returns a CellRange object containing the last selection coordinates applied to the table. This method behaves as hot.getSelectedRange() before the braking change.
  • hot.alter('remove_row', [[1, 4], [10, 1]]) Supports removing non-contiguous rows. Instead of passing the row index, we can pass an array of arrays, where the first item is the index of the row and at the second item is the amount of rows to be removed;
  • hot.alter('remove_col', [[1, 4], [10, 1]]) Same as above, but for the columns. Only "remove" actions support that new feature.
Backward-incompatible changes
  • hot.getSelected() Returns an array of arrays with the coordinates of all layers ([[row, col, rowEnd, colEnd], [row, col, rowEnd, colEnd] ...]);
  • hot.getSelectedRange() Returns an array of CellRange objects with the coordinates of all layers ([{CellRange}, {CellRange} ...]);
  • Previously hot.selection.empty(), now hot.emptySelectedCells();
  • Changed selection colors:
    - area borders, was #89aff9 -> is #4b89ff
    - area background, was #b5d1ff -> is #005eff
    - current selection border, was #5292f7 -> is #4b89ff
  • Removed the multiSelect setting and replaced it with selectionMode: 'single';
  • Added a new selectionMode option, which can be set either as 'single' (previously as multiSelect: false), 'range' (previously as multiSelect: true) or 'multiple' (new non-contiguous mode);
Backward-compatible changes
  • afterSelection
    - previously: afterSelection(row, column, rowEnd, columnEnd, preventScrolling)
    - now: afterSelection(row, column, rowEnd, columnEnd, preventScrolling, selectionLayerLevel)
  • afterSelectionByProp
    - previously: afterSelectionByProp(row, prop, rowEnd, propEnd, preventScrolling)
    - now: afterSelectionByProp(row, prop, rowEnd, propEnd, preventScrolling, selectionLayerLevel)
  • afterSelectionEnd
    - previously: afterSelectionEnd(row, column, rowEnd, columnEnd)
    - now: afterSelectionEnd(row, column, rowEnd, columnEnd, selectionLayerLevel)
  • afterSelectionEndByProp
    - previously: afterSelectionEndByProp(row, prop, rowEnd, propEnd)
    - now: afterSelectionEndByProp(row, prop, rowEnd, propEnd, selectionLayerLevel)

We've added a selectionLayerLevel argument for all the hooks listed above. The selectionLayerLevel is a number indicating which selection layer is currently being modified. For the first selection, this value is 0, with the new added layers this number increases.

Changes
  • Fixed a problem with unneeded rows being added when using Filters along with minRows or minSpareRows. (#24)

The corresponding Handsontable CE version is 0.36.0.

1.15.1

Released on 25th of January, 2018

Changes:
  • Fixed a problem, where the language files were not generated properly in some specific cases. (#23)
  • Fixed a problem with the afterValidate hook's arguments with trimRows enabled. (#11)
  • Updated the moment version because of a ReDoS vulnerability.

The corresponding Handsontable CE version is 0.35.1.

1.15.0

Released on 6th of December, 2017

New feature:

From now on you will able to translate messages and elements of the UI to your specific language. Read more about this new feature.

Breaking changes:
  • We have renamed our locale and language-related configuration options to free the namespace required for multi-language support introduced within this release.

What used to be defined as:

{
  format: '0,0.00 $',
  language: 'de-DE'
}
will now look like this:
{
  numericFormat: {
    pattern: '0,0.00 $',
    culture: 'de-DE'
  }
}
Take a look at our documentation for more insight:

Other changes:
  • Removed unwanted dependencies. (#13)
  • Fixed problems in test cases for the Filters plugin. (#12)
  • Added multi-language support for the table. Please, take a look at https://docs.handsontable.com/tutorial-internationalization.html for more information. (#6)
  • Added a weekHeaderGenerator option for the GanttChart plugin. (#19)
  • Fixed a bug, where formulas did not work on nested coordinates. (#15)

The corresponding Handsontable CE version is 0.35.0.

1.14.3

Released on 12th of October, 2017

Changes:
  • Added the allowSplitWeeks option for the Gantt Chart plugin (defaults to true) (#2)

The corresponding Handsontable CE version is 0.34.5.

1.14.2

Released on 13th of September, 2017

Changes:
  • Added a missing moment import. (#4514)

The corresponding Handsontable CE version is 0.34.4.

1.14.1

Released on 12th of September, 2017

Changes:
  • Fix a problem, with the table instance removed its sibling on destroy.

The corresponding Handsontable CE version is 0.34.3.

1.14.0

Released on 12th of September, 2017

Breaking changes:
  • Since version 1.14.0, it is required to pass a valid Handsontable Pro license key in the settings object under the licenseKey property. If a valid key is not provided, Handsontable will display a small notification below the table.
    Please review your implementation to make sure your setup remains intact.

The corresponding Handsontable CE version is 0.34.2.

1.13.1

Released on 6th of September, 2017

Changes:
  • Fixed a problem with the Filters plugin improperly trimming the table rows.
  • Updated documentation for the Trim Rows plugin.
  • Fixed a problem with the Filters plugin dropdown components not being updated properly.
  • Fixed a problem with hot-table not being initialized properly.
  • Fixed a problem with Handsontable throwing an error when moving the cursor outside the table.
  • Updated the setDataAtCell TypeScript definition.
  • Updated the Bootstrap css files.

The corresponding Handsontable CE version is 0.34.1.

1.13.0

Released on 2nd of August, 2017

Breaking changes:
  • We've unified the types of coordinates passed to these plugin hooks: beforeGetCellMeta, afterGetCellMeta, afterSetCellMeta. Now they'll be operating on visual table coordinates (so do the getCellMeta and setCellMeta methods). Please make sure you update your hook callbacks to use them properly. (#4409)
Changes:
  • Updated the Filters documentation.
  • Fixed a problem where the Filters plugin threw an error when there was a condition with too many arguments applied.
  • Added support for the EXP formula in the Filters plugin.
  • Changed the text in the warning message thrown when the amount of conditions exceeded the capacity of the dropdownMenu.
  • Fixed the alignment of the checkboxes in the Filters dropdown menu.
  • Fixed a problem where the Filters plugin threw an error when adding a condition with an improper name.
  • Fixed a problem where the Filters plugin threw an error when using the disablePlugin method while the Dropdown Menu plugin was not enabled.

The corresponding Handsontable CE version is 0.34.0.

1.12.0

Released on 11th of July, 2017

Breaking changes:
  • We've refactored the Copy/Paste plugin and removed the ZeroClipboard dependency. Please make sure it works as expected in your setup before updating to this version.
  • Some of the Filters plugin's API methods has changed. Please check GH#4358 for detailed information.
Changes:
  • Fixed a bug where Filters were broken when doing a custom build.
  • Added a workaround for npm incorrectly generating the package-lock.json file.
  • Removed ZeroClipboard from dependencies.
  • Extended the Filters API for with extra operations between conditions.
  • Updated the Handsontable dependencies.
  • Fixed a problem with a missing method import. (#4367)
  • Added a new config option for the Comments plugin (displayDelay), allowing to customize the delay for showing the comment box. (#4323)
  • Fixed a problem, where using the Autofill option upwards with a group of cells gave unexpected results. (#4298)
  • Updated the Handsontable dependencies. (#4280)
  • Fixed an issue with different gap sizes in the dropdown menu for Firefox and Chrome. (#2832)
  • Updated documentation for some methods in our API. (#4191, #4032, #3895, #3876, #3170, #3025, #2298, #2259)
  • Added a helper for template literals. (#4354)
  • Updated our ESlint rules list. (#4366)

The corresponding Handsontable CE version is 0.33.0.

1.11.0

Released on 31th of May, 2017

Breaking changes:
  • Migration from Traceur to Babel. (#4070)

We're now using Babel to transpile our code. That means that we had to make breaking changes, please take a look if you have to make some adjustments in your implementation before moving to this version.

  • The Bootstrap CSS files were merged to Handsontable's default CSS.
  • The /plugins directory was deleted (with the "removeRow plugin" included)
  • Some global variables were reorganized and/or removed. Please take a look.


Validators
WasIs
Handsontable.AutocompleteValidatorHandsontable.validators.AutocompleteValidator
Handsontable.AutocompleteValidatorHandsontable.validators.AutocompleteValidator
Handsontable.DateValidatorHandsontable.validators.DateValidator
Handsontable.NumericValidatorHandsontable.validators.NumericValidator
Handsontable.TimeValidatorHandsontable.validators.TimeValidator
Renderers
WasIs
Handsontable.AutocompleteRendererHandsontable.renderers.AutocompleteRenderer
Handsontable.BaseRendererHandsontable.renderers.BaseRenderer
Handsontable.CheckboxRendererHandsontable.renderers.CheckboxRenderer
Handsontable.HtmlRendererHandsontable.renderers.HtmlRenderer
Handsontable.NumericRendererHandsontable.renderers.NumericRenderer
Handsontable.PasswordRendererHandsontable.renderers.PasswordRenderer
Handsontable.TextRendererHandsontable.renderers.TextRenderer
Cell types
WasIs
Handsontable.AutocompleteCellHandsontable.cellTypes.autocomplete
Handsontable.CheckboxCellHandsontable.cellTypes.checkbox
Handsontable.DateCellHandsontable.cellTypes.date
Handsontable.DropdownCellHandsontable.cellTypes.dropdown
Handsontable.HandsontableCellHandsontable.cellTypes.handsontable
Handsontable.NumericCellHandsontable.cellTypes.numeric
Handsontable.PasswordCellHandsontable.cellTypes.password
Handsontable.TextCellHandsontable.cellTypes.text
Handsontable.TimeCellHandsontable.cellTypes.time
Plugins
WasIs
Handsontable.CustomBordersHandsontable.plugins.CustomBorders
Handsontable.MergeCellsHandsontable.plugins.MergeCells
Handsontable.SearchHandsontable.plugins.Search
Handsontable.UndoRedoHandsontable.plugins.UndoRedo
Helpers
WasIs
Handsontable.DomHandsontable.dom
Other
WasIs
Handsontable.EditorManager(not available)
Handsontable.EditorState(not available)
Handsontable.SearchCellDecorator(not available)
Handsontable.TableView(not available)
Handsontable.cellLookup(not available)
Handsontable.eventManagerHandsontable.EventManager
Handsontable.utils(not available)
  • Changed the way in which custom cell types are being registered. (#4254)

We improved the public API to give developers an ability to register cell behaviors and types separately. We strongly recommend to use a registered alias in Handsontable settings to increase the code maintainability.

An example on how to add a custom editor/renderer/validator:

Handsontable.cellTypes.registerCellType('my-custom-select', {
  editor: MyCustomSelectEditor,
  renderer: MyCustomSelectRenderer,
  validator: MyCustomSelectValidator,
});

Handsontable.validators.registerValidator('credit-card', function(query, callback) {
  callback(/* passed `true` or `false` depending on a query value */);
});

new Handsontable(document.getElementById('element'), {
  data: data,
  columns: [{
    data: 'id',
    type: 'my-custom-select'
  }, {
    data: 'name',
    renderer: 'my-custom-select'
  }, {
    data: 'cardNumber',
    validator: 'credit-card'
  }]
})
Changes:
  • Fixed documentation for the autoRowSize config option. (#4267)
  • Fixed documentation for the cells config option. (#4185)
  • Fixed a problem with the maxRows functionality. (#4180)
  • Fixed a problem with the maxCols functionality. (#4156)
  • Fixed a bug, where passing integer values to a dropdown caused the cell to be marked as invalid. (#4143)
  • Added the TypeScript definitions to the repository. (#4112)
  • Fixed a bug with getCoords throwing an error when used on non-cell elements. (#4074)
  • Data copied from the table will no longer have a newline at the end. (#3801)
  • Fixed a problem with scrolling on IE9+. (#2350)
  • Fixed a wrong variable in a listener of the mouse wheel event. (#4255)
  • Fixed an issue related to defining a cell metadata for non-existing cells. (#4024)

The corresponding Handsontable CE version is 0.32.0.

Edit this page

1.11.0-beta2

Released on 24th of May, 2017

Breaking changes:
  • Changed the way in which custom cell types are being registered. (#4254)

As you already know from beta1 release, we have migrated from Traceur to Babel. It required from us to standarize the code so we decided to stop using a Handsontable global variable in our internal projects. As a result, we changed the way of creating custom editors, validators, renderers and their combinations like 'cell types'. In this beta2 release we improved the public API to give developers an ability to register cell behaviors and types separately. We strongly recommend to use a registered alias in Handsontable settings to increase the code maintainability.

An example on how to add a custom editor/renderer/validator:

Handsontable.cellTypes.registerCellType('my-custom-select', {
  editor: MyCustomSelectEditor,
  renderer: MyCustomSelectRenderer,
  validator: MyCustomSelectValidator,
});

Handsontable.validators.registerValidator('credit-card', function(query, callback) {
  callback(/* passed `true` or `false` depending on a query value */);
});

new Handsontable(document.getElementById('element'), {
  data: data,
  columns: [{
    data: 'id',
    type: 'my-custom-select'
  }, {
    data: 'name',
    renderer: 'my-custom-select'
  }, {
    data: 'cardNumber',
    validator: 'credit-card'
  }]
})
Changes:
  • Fixed a wrong variable in a listener of the mouse wheel event. (#4255)
  • Fixed an issue related to defining a cell metadata for non-existing cells. (#4024)

The corresponding Handsontable CE version is 0.32.0-beta2.

1.11.0-beta1

Released on 17th of May, 2017

Breaking changes:
  • Migration from Traceur to Babel. (#4070)

We're now using Babel to transpile our code. That means that we had to make breaking changes, please take a look if you have to make some adjustments in your implementation before moving to this version.

  • The Bootstrap CSS files were merged to Handsontable's default CSS.
  • The /plugins directory was deleted (with the "removeRow plugin" included)
  • Some global variables were reorganized and/or removed. Please take a look.


Validators
WasIs
Handsontable.AutocompleteValidatorHandsontable.validators.AutocompleteValidator
Handsontable.AutocompleteValidatorHandsontable.validators.AutocompleteValidator
Handsontable.DateValidatorHandsontable.validators.DateValidator
Handsontable.NumericValidatorHandsontable.validators.NumericValidator
Handsontable.TimeValidatorHandsontable.validators.TimeValidator
Renderers
WasIs
Handsontable.AutocompleteRendererHandsontable.renderers.AutocompleteRenderer
Handsontable.BaseRendererHandsontable.renderers.BaseRenderer
Handsontable.CheckboxRendererHandsontable.renderers.CheckboxRenderer
Handsontable.HtmlRendererHandsontable.renderers.HtmlRenderer
Handsontable.NumericRendererHandsontable.renderers.NumericRenderer
Handsontable.PasswordRendererHandsontable.renderers.PasswordRenderer
Handsontable.TextRendererHandsontable.renderers.TextRenderer
Cell types
WasIs
Handsontable.AutocompleteCellHandsontable.cellTypes.autocomplete
Handsontable.CheckboxCellHandsontable.cellTypes.checkbox
Handsontable.DateCellHandsontable.cellTypes.date
Handsontable.DropdownCellHandsontable.cellTypes.dropdown
Handsontable.HandsontableCellHandsontable.cellTypes.handsontable
Handsontable.NumericCellHandsontable.cellTypes.numeric
Handsontable.PasswordCellHandsontable.cellTypes.password
Handsontable.TextCellHandsontable.cellTypes.text
Handsontable.TimeCellHandsontable.cellTypes.time
Plugins
WasIs
Handsontable.CustomBordersHandsontable.plugins.CustomBorders
Handsontable.MergeCellsHandsontable.plugins.MergeCells
Handsontable.SearchHandsontable.plugins.Search
Handsontable.UndoRedoHandsontable.plugins.UndoRedo
Helpers
WasIs
Handsontable.DomHandsontable.dom
Other
WasIs
Handsontable.EditorManager(not available)
Handsontable.EditorState(not available)
Handsontable.SearchCellDecorator(not available)
Handsontable.TableView(not available)
Handsontable.cellLookup(not available)
Handsontable.eventManagerHandsontable.EventManager
Handsontable.utils(not available)
Changes in Handsontable CE:
  • Fixed documentation for the cells config option. (#4185)
  • Fixed a problem with the maxRows functionality. (#4180)
  • Fixed a problem with the maxCols functionality. (#4156)
  • Fixed a bug, where passing integer values to a dropdown caused the cell to be marked as invalid. (#4143)
  • Added the TypeScript definitions to the repository. (#4112)
  • Fixed a bug with getCoords throwing an error when used on non-cell elements. (#4074)
  • Data copied from the table will no longer have a newline at the end. (#3801)
  • Fixed a problem with scrolling on IE9+. (#2350)
Changes in Handsontable Pro:
  • Fixed a problem, where the ESC key did not work for the filtering menu.

The corresponding Handsontable CE version is 0.32.0-beta1.

1.10.1

Released on 7th of March, 2017

Changes
  • Fixed a problem where the column titles were trimmed when using the nestedHeaders plugin.
  • Fixed a problem with the Nested Headers' collapseAll method.
  • Updated Handsontable CE to 0.31.1.

1.10.0

Released on 14th of February, 2017

Backward incompatible changes Changes
  • Updated the hot-formula-parser dependency.
  • Added some fixes for Handsontable CE.
  • Fixed a bug with `grunt test-pro` wasn't working properly.
  • Updated Handsontable CE version to `0.31.0`.

1.9.1

Released on 17st of January, 2017

Changes
  • Fixed a problem with copying/pasting values when fixedRowsBottom is enabled.
  • Updated the Handsontable version to 0.30.1.

1.9.0

Released on 11th of January, 2017

Breaking Changes
  • The AutoFill plugin was refactored, thus introducing some breaking changes into the API. If your implementation uses the previous autoFill structure, please check if it everything works as expected. (#3257)
  • The setCellMeta method was changed to work on visual row and column indexes, analogously to the getCellMeta method. If your implementation utilizes it, please check if you need to tweak it (it may cause issues especially when using it with the columnSorting, manualRowMove and manualColumnMove plugins).
Changes
  • Fixed issues with manipulating the data structure with the columnSummary plugin enabled.
  • Added tests for the Pro version concerning the maxRows option.
  • Fixed a problem with building the Pro version with a different Handsontable branch than master
  • Updated Handsontable to version 0.29.0.

1.8.2

Released on 21st of December, 2016

Changes
  • Fix a problem when longer header labels were cut with the nestedHeaders plugin.
  • Fix a problem with selection and keyboard navigation when using the hiddenRows plugin.
  • Updated the Handsontable version to 0.29.2.

1.8.1

Released on 13th of December, 2016

Changes
  • Refactored the columnSummary plugin, introducing a feature which allows providing custom functions to the plugin configuration.
  • Updated Handsontable to version 0.29.1.

1.8.0

Released on 8th of November, 2016

Breaking changes
  • We've added a new cell property: allowHtml. If you set it to true, the autocomplete and dropdown cells will be able to render HTML elements correctly (as it was before). However, if you set it to false, no HTML will be rendered. This change is meant to decrease Handsontable's XSS vulnerability.
  • We've refactored the Comments plugin, which caused some API and visual changes. Please see our documentation and check if you need to make some changes in your implementation. The allowHtml property defaults to **false**, so please make sure if you have to specify it in your implementation!
Changes
  • Fixed problems with tests on macOS Sierra.
  • Fixed a problem when typing = in a cell caused an error to be thrown.
  • Tweaked invalid characters validation for the formulas.
  • Fixed a problem with updating the fixedRowsBottom option.
  • Updated Handsontable to the latest version. (0.29.0).

1.7.4

Released on 13th of October, 2016

Changes
  • Updated Handsontable to the latest version. (0.28.4).

1.7.3

Released on 5th of October, 2016

Changes
  • Updated Handsontable to the latest version. (0.28.3).

1.7.2

Released on 4th of October, 2016

Changes
  • Fixed a problem where hiding the first column would also hide its border.
  • Updated Handsontable to the latest version. (0.28.2)

1.7.1

Released on 29th of September, 2016

Changes
  • Added the hot-formula-parser dependency to bower.json.
  • Fixed the firstWeekDay functionality in the Gantt Chart plugin.
  • Fixed a problem when it was impossible to create Gantt Chart plugin's range bars spanned between years.
  • Fixed a problem with header selection in the Nested Headers plugin.
  • Fixed a problem with the Formulas and Column Sorting plugins being used together.
  • Updated to the latest Handsontable version (0.28.1)

1.7.0

Released on 15th of September, 2016

Breaking changes
  • This release introduces a new feature - Formulas (currently in alpha stage, may not be stable). This required us to make some breaking changes, for example, the afterCreateRow and afterCreateCol changes their argument types (the third argument used to be boolean, now it has to be string). You can find more about the plugin in our docs: https://handsontable.com/docs/demo-formula-support.html.
  • We've refactored the Manual Column Move plugin to allow the user to move multiple columns at once. This made some backward-incompatible changes. For example the beforeColumnMove and afterColumnMove hooks had their arguments changed.

After updating to this version, please check if any changes need to made in your implementation.

Changes
  • New plugin - Nested Rows. It's currently in alpha stage and may not be stable. It allows providing Handsontable with nested data structures and operating on data within the groups. You can find more information in our docs: https://handsontable.com/docs/demo-nested-rows.html.
  • Added missing dependencies to bower.json.
  • Updated to the latest Handsontable version (0.28.0).

1.6.0

Released on 2nd of September, 2016

Breaking changes
  • We've refactored the Manual Row Move plugin to allow the user to move multiple rows at once. This made some backward-incompatible changes. For example the `beforeRowMove` and `afterRowMove` hooks had their arguments changed. After updating to this version, please check if any changes need to made in your implementation.
  • We've added an additional default column/row header styling - now the column and row header corresponding to the selected cell will be rendered with a darker background. Please have that in mind when styling your Handsontable implementations.
Changes
  • Fixed some performance problems connected with using both Dropdown Menu and Filters together.
  • Added support for the refactored Manual Row Move plugin in the Hidden Rows plugin.
  • Updated Handsontable to the latest version, which is 0.27.0. (See changes).

1.5.1

Released on 27th of July, 2016

Changes
  • Improved rendering performance of GanttChart plugin.
  • Updated Handsontable to the latest version, which is 0.26.1. (See changes).

1.5.0

Released on 27th of June, 2016

Backward incompatible changes
  • Changed one of our core dependencies. We're using Numbro instead of Numeral.js. If you're including our dependencies independently, please update your setup. (3487)
  • Updated Handsontable to the latest version, which is 0.26.0. (See changes).

Changes
  • Fixed a bug where hovering over the Filter by value items would throw errors.

1.4.1

Released on 6th of June, 2016

Changes
  • Fixed problems with hiddenRows and hiddenColumns.
  • New feature: Added a Select All and Clear options for the Filtering plugin.
  • Fixed problems with filtering blank cells.
  • Updated Handsontable to the latest version, which is 0.25.1. (See changes).

1.4.0

Released on 25th of May, 2016

Changes
  • Fixed problems with selection in the nestedHeaders plugin.
  • New feature: Added "show" and "hide column" to the Context Menu.
  • Upgraded Handsontable to the latest version, which is 0.25.0. (See changes).

1.3.4

Released on 28th of April, 2016

Changes
  • Upgraded Handsontable to the latest version, which is 0.24.3. (See changes).

1.3.3

Released on 11th of April, 2016

Changes
  • Added the afterFilter hook.
  • Replaced keyup with input in "Filter by Value" section.
  • Fixed problems with not working ESC key.
  • Added support for node environment.
  • Upgraded Handsontable to the latest version, which is 0.24.2. (See changes).

1.3.2

Released on 18th of March, 2016

Changes
  • Update with a working handsontable.full.js build. The .full build from 1.3.1 had major problems with the date and time cells.

1.3.1

Released on 16th of March, 2016

Changes
  • Upgraded Handsontable to the latest version, which is 0.24.1. (See changes).

1.3.0

Released on 15th of March, 2016

Backward incompatible change
  • Upgraded Handsontable to the latest version, which is 0.24.0. (See changes).
  • A noticeable visual change in the Filters plugin: The filters menu gained a new section (Filter by Value).

Changes
  • Fixed problem when enabling manualColumnMove and hiddenColumns displayed empty values in a column.
  • Fixed a problem, when sometimes clicking a dropdown menu button caused the page to refresh.
  • Extended the Filters functionality by adding the "filter by value" component.
  • Added a possibility to undo/redo filtering.

1.2.0

Released on 19th of February, 2016

Backward incompatible change
  • Upgraded Handsontable to the latest version, which is 0.23.0. (See changes)

Changes
  • Added an asynchronous calls in Gantt Chart plugin to reduce the time needed to update the data.
  • Improvements to the Context/Dropdown menu, mainly a better UI handling.
  • The Filter Data plugin is not shrinking the table anymore when there is no results.

1.1.1

Released on 4th of February, 2016

  • Added a possibility to set up server-side filtering by adding the beforeFilter hook.
  • Added cell meta cache'ing to the Gantt Chart plugin in order to properly use the updateSettings method.

1.1.0

Released on 3th of February, 2016

  • Backward incompatible change
    Upgraded Handsontable to the latest version, which is 0.22.0.
  • Fixed an error with selecting a row, with the last column being hidden.
  • Fixed a memory leak problem with the GanttChart plugin.

1.0.0

Released on 20th of January, 2016

  • Backward incompatible change
    The afterValidate hook will provide the visual row indexes, instead of the logical ones. For example, if the first row becomes the seventh row after sorting the table, the afterValidate hook will provide 6 as the row index. To translate the visual row to the logical row, you can use the translateRow method of the columnSorting plugin (#3132).
    var logicalRow = hotInstance.getPlugin('columnSorting').translateRow(row);
  • Fixed problem, where pasting a dataset which row count exceeds the number of rows in the table nothing happened.
  • Fixed problems with dropdown menu and submenu positioning.
  • Fixed problems with filtering the fixed rows.
  • Fixed problem with filter options missing after filtering out all rows.

1.0.0-beta3

Released on 11th of January, 2016

  • Fixed problem with the columnSummary plugin, which wasn't updating the calculation results when an object-based dataset was provided to the Handsontable instance.
  • Prevent displaying the dropdown header buttons in higher levels of headers (for example, when using the nested headers plugin).

1.0.0-beta2

Released on 8th of January, 2016

  • Fixed problems with columns being selected after collapsing a column (with the collapsibleColumns plugin).
  • Fixed problems with fixedRowsBottom not working properly with window-scrollable tables.
  • Fixed wrong position issues in the Filters plugin.
  • Fixed column selection issues in the nestedHeaders plugin.

Help us improve this page