# Data Binding

Handsontable for WireBootstrap does not use a [datamap](https://docs.wirebootstrap.com/wirebootstrap/working-with-components/configuration/data#datamap) which means it does not expect any specific set of fields in data bound to the component.

To bind the component to data, set the configuration's `data` property.

```javascript
const rows = [
    { product: "Skates", sales: 1655},
    { product: "Bikes", sales: 1883 }
]

const table = new wire.handsontable().render("#table", {
    data: rows
});
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.wirebootstrap.com/handsontable/data-binding.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
