Module: Lipsiadmin::View::Helpers::FormBuilder
- Defined in:
- lib/view/helpers/view_helper.rb
Overview
:nodoc:
Instance Method Summary collapse
- #country_select(method, priority_countries = nil, options = {}, html_options = {}) ⇒ Object
- #ext_date_select(method, options = {}, html_options = {}) ⇒ Object
- #ext_datetime_select(method, options = {}, html_options = {}) ⇒ Object
Instance Method Details
#country_select(method, priority_countries = nil, options = {}, html_options = {}) ⇒ Object
216 217 218 |
# File 'lib/view/helpers/view_helper.rb', line 216 def country_select(method, priority_countries = nil, = {}, = {}) @template.country_select(@object_name, method, priority_countries, .merge(:object => @object), ) end |
#ext_date_select(method, options = {}, html_options = {}) ⇒ Object
208 209 210 |
# File 'lib/view/helpers/view_helper.rb', line 208 def ext_date_select(method, = {}, = {}) @template.ext_date_select(@object_name, method, .merge(:object => @object), ) end |
#ext_datetime_select(method, options = {}, html_options = {}) ⇒ Object
212 213 214 |
# File 'lib/view/helpers/view_helper.rb', line 212 def ext_datetime_select(method, = {}, = {}) @template.ext_datetime_select(@object_name, method, .merge(:object => @object), ) end |