# Configuration

Use the following configuration options to bind the Bootstrap table component.

## Properties

| Name          | Default          | Description                                                                     |
| ------------- | ---------------- | ------------------------------------------------------------------------------- |
| filter        |                  | Determines whether field filters can be used on columns at the top of the table |
| header        |                  | Determines whether the column headings are displayed                            |
| noRowsMessage | No rows returned | Message displayed when no records are returned                                  |

The following example turns on column filters.

```typescript
const table = new wire.bsTable().render("#table", {
    ...
    filter: true
});
```
