Bootstrap
Docs HomeProduct SiteSupport
  • Introduction
  • Buttons
    • Configuration
    • Data Binding
  • Checkboxes
    • Configuration
    • Data Binding
    • Events
  • Input
    • Configuration
    • Data Binding
    • Events
    • Methods
  • Modals
    • Message
    • Error
  • Search List
    • Configuration
    • Data Binding
    • Methods
  • Select
    • Configuration
    • Data Binding
    • Events
  • Table
    • Configuration
    • Data Binding
    • Events
  • Web Components
Powered by GitBook
On this page
  1. Table

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.

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

Last updated 2 years ago