Created
August 30, 2013 09:06
-
-
Save adamico/6387890 to your computer and use it in GitHub Desktop.
Twitter Bootstrap 3 initializer for Simple Form
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Use this setup block to configure all options available in SimpleForm. | |
SimpleForm.setup do |config| | |
# you need an updated simple_form gem for this to work, I'm referring to the git repo in my Gemfile | |
config.input_class = "form-control" | |
config.wrappers :bootstrap, tag: 'div', class: 'form-group', error_class: 'error' do |b| | |
b.use :html5 | |
b.use :placeholder | |
b.use :label | |
b.use :input | |
b.use :error, wrap_with: { tag: 'span', class: 'help-inline' } | |
b.use :hint, wrap_with: { tag: 'p', class: 'help-block' } | |
end | |
config.wrappers :group, tag: 'div', class: "form-group", error_class: 'error' do |b| | |
b.use :html5 | |
b.use :placeholder | |
b.use :label | |
b.use :input, wrap_with: { class: "input-group" } | |
b.use :hint, wrap_with: { tag: 'span', class: 'help-block' } | |
b.use :error, wrap_with: { tag: 'span', class: 'help-inline' } | |
end | |
# Wrappers for forms and inputs using the Twitter Bootstrap toolkit. | |
# Check the Bootstrap docs (http://twitter.github.com/bootstrap) | |
# to learn about the different styles for forms and inputs, | |
# buttons and other elements. | |
config.default_wrapper = :bootstrap | |
end |
use
error_class: 'has-error'
instead of
error_class: 'error'
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Does this work out of box?
How to migration from bootstrap 2 to bootstrap 3?