Class: BindRowsWithHeaders

BindRowsWithHeaders

handsontable-pro/src/plugins/bindRowsWithHeaders/bindRowsWithHeaders.js, line 27

Plugin allowing binding the table rows with their headers.
If the plugin is enabled, the table row headers will "stick" to the rows, when they are hidden/moved. Basically, if at the initialization
row 0 has a header titled "A", it will have it no matter what you do with the table.

Example
...
var hot = new Handsontable(document.getElementById('example'), {
  date: getData(),
  bindRowsWithHeaders: true
});
...

Members

bindStrategyBindStrategy

Strategy object for binding rows with headers.

removedRowsArray

List of last removed row indexes.

Methods

handsontable-pro/src/plugins/bindRowsWithHeaders/bindRowsWithHeaders.js, line 159

destroy()

Destroy plugin.

handsontable-pro/src/plugins/bindRowsWithHeaders/bindRowsWithHeaders.js, line 87

disablePlugin()

Disable the plugin.

handsontable-pro/src/plugins/bindRowsWithHeaders/bindRowsWithHeaders.js, line 56

enablePlugin()

Enable the plugin.

handsontable-pro/src/plugins/bindRowsWithHeaders/bindRowsWithHeaders.js, line 49

isEnabled(){Boolean}

Check if plugin is enabled.

Returns: {Boolean}
handsontable-pro/src/plugins/bindRowsWithHeaders/bindRowsWithHeaders.js, line 80

updatePlugin()

Updates the plugin to use the latest options you have specified.