Module: BootstrapForm::Select2

Defined in:
lib/bootstrap_form/select2.rb

Instance Method Summary collapse

Instance Method Details

#select2(method, choices = nil, options = {}, html_options = {}, &block) ⇒ Object



4
5
6
7
8
9
10
# File 'lib/bootstrap_form/select2.rb', line 4

def select2(method, choices = nil, options = {}, html_options = {}, &block)
  form_group_builder(method, options, html_options) do
    prepend_and_append_input(method, options) do
      @template.select2(@object_name, method, choices, objectify_options(options), @default_options.merge(html_options), &block)
    end
  end
end