Class: SimpleForm::Inputs::CollectionInput
- Defined in:
- lib/simple_form/inputs/collection_input.rb
Direct Known Subclasses
CollectionRadioButtonsInput, CollectionSelectInput, GroupedCollectionSelectInput
Constant Summary collapse
- BASIC_OBJECT_CLASSES =
[String, Integer, Float, NilClass, Symbol, TrueClass, FalseClass]
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 Components::Readonly
Methods included from Components::Placeholders
#placeholder, #placeholder_text
Methods included from Components::Pattern
Methods included from Components::MinMax
Methods included from Components::Minlength
Methods included from Components::Maxlength
Methods included from Components::LabelInput
Methods included from Components::HTML5
#html5, #html5?, #initialize, #input_html_required_option
Methods included from Components::Hints
Methods included from Components::Errors
#error, #full_error, #has_errors?, #has_value?, #valid?
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.
12 13 14 15 |
# File 'lib/simple_form/inputs/collection_input.rb', line 12 def self.boolean_collection [ [I18n.t(:"simple_form.yes", default: 'Yes'), true], [I18n.t(:"simple_form.no", default: 'No'), false] ] end |
Instance Method Details
#input(wrapper_options = nil) ⇒ Object
17 18 19 20 |
# File 'lib/simple_form/inputs/collection_input.rb', line 17 def input( = nil) raise NotImplementedError, "input should be implemented by classes inheriting from CollectionInput" end |
#input_options ⇒ Object
22 23 24 25 26 27 28 29 30 |
# File 'lib/simple_form/inputs/collection_input.rb', line 22 def = super [:include_blank] = true unless skip_include_blank? translate_option , :prompt translate_option , :include_blank end |