Class: SimpleForm::Inputs::CollectionInput
- Defined in:
- lib/simple_form/inputs/collection_input.rb
Direct Known Subclasses
CollectionRadioButtonsInput, CollectionSelectInput, GroupedCollectionSelectInput
Instance Attribute Summary
Attributes inherited from Base
#attribute_name, #column, #html_classes, #input_html_classes, #input_html_options, #input_type, #options, #reflection
Class Method Summary collapse
-
.boolean_collection ⇒ Object
Default boolean collection for use with selects/radios when no collection is given.
Instance Method Summary collapse
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
Methods included from Components::Placeholders
#placeholder, #placeholder_text
Methods included from Components::Pattern
Methods included from Components::MinMax
Methods included from Components::Maxlength
Methods included from Components::LabelInput
Methods included from Components::HTML5
#html5, #html5?, #initialize, #input_html_aria_required_option, #input_html_required_option
Methods included from Components::Hints
Methods included from Components::Errors
#error, #full_error, #has_errors?
Methods included from Helpers::Validators
Constructor Details
This class inherits a constructor from SimpleForm::Inputs::Base
Class Method Details
.boolean_collection ⇒ Object
Default boolean collection for use with selects/radios when no collection is given. Always fallback to this boolean collection. Texts can be translated using i18n in “simple_form.yes” and “simple_form.no” keys. See the example locale file.
8 9 10 11 12 13 |
# File 'lib/simple_form/inputs/collection_input.rb', line 8 def self.boolean_collection i18n_cache :boolean_collection do [ [I18n.t(:"simple_form.yes", default: 'Yes'), true], [I18n.t(:"simple_form.no", default: 'No'), false] ] end end |
Instance Method Details
#input(wrapper_options = nil) ⇒ Object
15 16 17 18 |
# File 'lib/simple_form/inputs/collection_input.rb', line 15 def input( = nil) raise NotImplementedError, "input should be implemented by classes inheriting from CollectionInput" end |
#input_options ⇒ Object
20 21 22 23 24 25 26 27 28 |
# File 'lib/simple_form/inputs/collection_input.rb', line 20 def = super [:include_blank] = true unless skip_include_blank? translate_option , :prompt translate_option , :include_blank end |