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

Input

PreviousEventsNextConfiguration

Last updated 2 years ago

Bootstrap's enhances the basic HTML input.

Use the bsInput class to create an instance of Bootstrap's input text box inside WireBootstrap.

const myInput = new wire.bsInput();

Render the component using an HTML input element.

<input id="input" class="form-control">
...
myInput.render("#input",{
    ...
});

Web Component

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

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

Web Components
Input
Bootstrap Input