module BootstrapForm::Inputs::CollectionSelect

Public Instance Methods

collection_select_with_bootstrap(method, collection, value_method, text_method, options={}, html_options={}) click to toggle source

Disabling Metrics/ParameterLists because the upstream Rails method has the same parameters rubocop:disable Metrics/ParameterLists

# File lib/bootstrap_form/inputs/collection_select.rb, line 12
def collection_select_with_bootstrap(method, collection, value_method, text_method, options={}, html_options={})
  form_group_builder(method, options, html_options) do
    input_with_error(method) do
      collection_select_without_bootstrap(method, collection, value_method, text_method, options, html_options)
    end
  end
end