Module: Playbook::PbForm::FormBuilder::CollectionSelectField

Defined in:
app/pb_kits/playbook/pb_form/form_builder/collection_select_field.rb

Instance Method Summary collapse

Instance Method Details

#collection_select(name, collection, value_method, text_method, options = {}, html_options = {}, props: {}) ⇒ Object



7
8
9
10
11
12
13
14
15
16
17
# File 'app/pb_kits/playbook/pb_form/form_builder/collection_select_field.rb', line 7

def collection_select(name, collection, value_method, text_method, options = {}, html_options = {}, props: {} )
  props[:label] = @template.label(@object_name, name) if props[:label] == true
  options[:skip_default_ids] = false unless options.has_key?(:skip_default_ids)
  options[:prompt] = props[:blank_selection] || ""
  html_options[:required] = "required" if props[:required]
  input = super(name, collection, value_method, text_method, options, html_options)

  @template.pb_rails("select", props: props) do
    input
  end
end