Sha256: b999d8bc595ce20c2b2c768d20213c4c8478391d1d89754e23283a1a077da94e
Contents?: true
Size: 1.63 KB
Versions: 124
Compression:
Stored size: 1.63 KB
Contents
require 'simple_form' # Use this setup block to configure all options available in SimpleForm. SimpleForm.setup do |config| config.wrappers :inline, tag: 'span', class: 'form-group inline', error_class: 'has-error' do |b| b.use :html5 b.use :placeholder b.use :label, class: 'control-label' b.use :input, class: 'form-control' b.use :error, wrap_with: { tag: 'span', class: 'help-block' } end config.wrappers :vertical_form, tag: 'div', class: 'form-group', error_class: 'has-error' do |b| b.use :html5 b.use :placeholder b.use :label, class: 'control-label' b.wrapper tag: 'div' do |ba| ba.use :input, class: 'form-control' ba.use :error, wrap_with: { tag: 'span', class: 'help-block' } ba.use :hint, wrap_with: { tag: 'p', class: 'help-block' } end end config.wrappers :horizontal_file_input, tag: 'div', class: 'form-group', error_class: 'has-error' do |b| b.use :html5 b.use :placeholder b.optional :maxlength b.optional :readonly b.use :label, class: 'col-sm-3 control-label' b.wrapper tag: 'div', class: 'col-sm-9' do |ba| ba.use :input ba.use :error, wrap_with: { tag: 'span', class: 'help-block' } ba.use :hint, wrap_with: { tag: 'p', class: 'help-block' } end end # Wrappers for forms and inputs using the Twitter Bootstrap toolkit. # Check the Bootstrap docs (http://getbootstrap.com/css/) # to learn about the different styles for forms and inputs, # buttons and other elements. config.default_wrapper = :vertical_form config.error_notification_class = 'alert alert-danger' config.button_class = 'btn btn-default' end
Version data entries
124 entries across 124 versions & 3 rubygems