Input
The Bootstrap input
form component, implemented in Ruby. Use it like any of the other matestack form components in your apps, pages and components. It offers customizable options to simply achieve what is possible in Bootstrap with this component. See below for more information about the configuration options.
bs_form_input(*args, &block)
bs_form_input(*args, &block)
Renders a Bootstrap input field.
Optional options
type
- Defaults to:text
, can be set to:range
or:file
label
- Expects a string, gets displayed before the select menuform_text
- Expects a string, gets displayed after the select menudisabled
- If set to:true
, the input field is set to disabled and clicking them doesn't yield any effectbrowse_button_text
- Expects a string and sets the text to be displayed in the "browse" button for the:file
inputplaceholder
- Expects a string to be displayed as a placeholder for whatever the user decides to choose for the:file
input. Defaults to "Choose file"variant
- Expects a symbol to change the size of the select menu, you can use either:sm
or:lg
min
- Sets the corresponding HTML attributemax
- Sets the corresponding HTML attributestep
- Sets the corresponding HTML attributeshow_value
- Expects a boolean. Defaults tofalse
, if set totrue
it displays the current value for the corresponding:range
input type field
Examples
Basic usage for text input
Basic usage for float number input
Basic usage with label and form text
Basic usage as disabled input
returns
Basic usage with custom class
Basic usage with placeholder
Basic usage as range input
Using range input with show_value and non-default steps
Basic usage as file input
File input with non-default size and optional form_text
Multi-file input with placeholder and browse_button_text
Last updated