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

Table

PreviousEventsNextConfiguration

Last updated 2 years ago

Bootstrap's enhances the basic HTML table.

Use the bsTable class to create an instance of Bootstrap's table inside WireBootstrap.

const myTable = new wire.bsTable();

Render the component using an HTML table element.

<table id="table" class="table table-hover table-striped"></table>
...
myTable.render("#table",{
    ...
});

Web Component

<wire-bs-table wr-config=""></wire-bs-table>

Use the wire-bs-table web component to render the component using .

Web Components
table
Bootstrap Table