module BootstrapForm::Inputs::Select

Public Instance Methods

select_with_bootstrap(method, choices=nil, options={}, html_options={}, &block) click to toggle source
# File lib/bootstrap_form/inputs/select.rb, line 10
def select_with_bootstrap(method, choices=nil, options={}, html_options={}, &block)
  form_group_builder(method, options, html_options) do
    prepend_and_append_input(method, options) do
      select_without_bootstrap(method, choices, options, html_options, &block)
    end
  end
end