Class: SimpleForm::Inputs::CollectionRadioButtonsInput

Inherits:
CollectionInput show all
Defined in:
lib/simple_form/inputs/collection_radio_buttons_input.rb

Direct Known Subclasses

CollectionCheckBoxesInput

Instance Attribute Summary

Attributes inherited from Base

#attribute_name, #column, #html_classes, #input_html_classes, #input_html_options, #input_type, #options, #reflection

Instance Method Summary collapse

Methods inherited from CollectionInput

boolean_collection

Methods inherited from Base

#additional_classes, disable, enable, #initialize, #input_class

Methods included from SimpleForm::I18nCache

#get_i18n_cache, #i18n_cache, #reset_i18n_cache

Methods included from Components::Readonly

#readonly

Methods included from Components::Placeholders

#placeholder, #placeholder_text

Methods included from Components::Pattern

#pattern

Methods included from Components::MinMax

#min_max

Methods included from Components::Maxlength

#maxlength

Methods included from Components::LabelInput

#label_input

Methods included from Components::HTML5

#has_required?, #html5, #html5?, #initialize

Methods included from Components::Hints

#has_hint?, #hint

Methods included from Components::Errors

#error, #has_errors?

Methods included from Helpers::Validators

#has_validators?

Constructor Details

This class inherits a constructor from SimpleForm::Inputs::Base

Instance Method Details

#inputObject



4
5
6
7
8
9
10
11
# File 'lib/simple_form/inputs/collection_radio_buttons_input.rb', line 4

def input
  label_method, value_method = detect_collection_methods

  @builder.send("collection_#{input_type}",
    attribute_name, collection, value_method, label_method,
    input_options, input_html_options, &collection_block_for_nested_boolean_style
  )
end

#input_optionsObject



13
14
15
16
17
18
# File 'lib/simple_form/inputs/collection_radio_buttons_input.rb', line 13

def input_options
  options = super
  apply_default_collection_options!(options)
  apply_nested_boolean_collection_options!(options) if nested_boolean_style?
  options
end