Handsontable
Docs HomeProduct SiteSupport
  • Handsontable for WireBootstrap
  • Installation
  • Configuration
  • Data Binding
Powered by GitBook
On this page
  • Properties
  • Handsontable

Configuration

Use the following configuration options to bind the Handsontable for WireBootstrap component.

Properties

Name
Description

colHeaders

data

Handsontable

Handsontable

The Handsontable configuration property is a pass-through for Handsontable's own configuration. Below is the list of default values set by Handsontable for WireBootstrap.

    Handsontable: {
        data: [],
        height: 320,
        filters: true,
        dropdownMenu: true,
        rowHeaders: true,
        colHeaders: true,
        contextMenu: true,
        licenseKey: "non-commercial-and-evaluation"
    }

To override any of the default or set any other native Handsontable configuration property, set the Handsontable property.

new wire.handsontable().render("#table", {
    Handsontable: {
      dropdownMenu: false,
      multiColumnSorting: true,
      manualRowMove: true,        
    }
});
PreviousInstallationNextData Binding

Last updated 3 years ago

Boolean. When true, automatically sets the column headers using the names in the created from the configuration in the data property.

Set the to be displayed in the component.

The pass-through for the . See for an example.

column
DataTable
data
native Handsontable configuration
Handsontable