Class: Formtastic::Inputs::CountryInput
- Inherits:
-
Object
- Object
- Formtastic::Inputs::CountryInput
- Includes:
- Base
- Defined in:
- lib/formtastic/inputs/country_input.rb
Overview
Outputs a country select input, wrapping around a regular country_select helper. Rails doesn’t come with a ‘country_select` helper by default any more, so you’ll need to do one of the following:
-
install [the official Rails plugin](github.com/rails/iso-3166-country-select)
-
install any other country_select plugin that behaves in a similar way
-
roll your own ‘country_select` helper with the same args and options as the Rails one
By default, Formtastic includes a handfull of English-speaking countries as “priority counties”, which can be set in the ‘priority_countries` configuration array in the formtastic.rb initializer to suit your market and user base (see README for more info on configuration). Additionally, it is possible to set the :priority_countries on a per-input basis through the `:priority_countries` option. These priority countries will be passed down to the `country_select` helper of your choice, and may or may not be used by the helper.
Instance Attribute Summary
Attributes included from Base
#builder, #method, #object, #object_name, #options, #template
Instance Method Summary collapse
Methods included from Base
Methods included from Base::Wrapping
#input_wrapping, #wrapper_dom_id, #wrapper_html_options
Methods included from Base::Labelling
#label_from_options, #label_html, #label_html_options, #label_text, #localized_label, #render_label?, #requirement_text, #requirement_text_or_proc
Methods included from Base::Associations
#association, #association_primary_key, #belongs_to?, #reflection
Methods included from Base::Fileish
Methods included from Base::Validations
#column_limit, #limit, #not_required_through_negated_validation!, #not_required_through_negated_validation?, #optional?, #required?, #validation_integer_only?, #validation_limit, #validation_max, #validation_min, #validations, #validations?, #validator_relevant?
Methods included from Base::Naming
#as, #attributized_method_name, #humanized_method_name, #input_name, #sanitized_method_name, #sanitized_object_name
Methods included from Base::Hints
#hint?, #hint_html, #hint_text, #hint_text_from_options
Methods included from Base::Errors
#error_first_html, #error_html, #error_keys, #error_list_html, #error_none_html, #error_sentence_html, #errors, #errors?
Methods included from Base::Database
Methods included from Base::Options
#formtastic_options, #input_options
Methods included from Base::Html
#dom_id, #dom_index, #input_html_options
Instance Method Details
#priority_countries ⇒ Object
60 61 62 |
# File 'lib/formtastic/inputs/country_input.rb', line 60 def priority_countries [:priority_countries] || builder.priority_countries end |
#to_html ⇒ Object
52 53 54 55 56 57 58 |
# File 'lib/formtastic/inputs/country_input.rb', line 52 def to_html raise "To use the :country input, please install a country_select plugin, like this one: http://github.com/rails/iso-3166-country-select" unless builder.respond_to?(:country_select) input_wrapping do label_html << builder.country_select(method, priority_countries, , ) end end |