Methods
C
D
S
T
Instance Public methods
collection_select(method, collection, value_method, text_method, options = {}, html_options = {})
# File rails/actionpack/lib/action_view/helpers/form_options_helper.rb, line 350
def collection_select(method, collection, value_method, text_method, options = {}, html_options = {})
  @template.collection_select(@object_name, method, collection, value_method, text_method, options.merge(:object => @object), html_options)
end
country_select(method, priority_countries = nil, options = {}, html_options = {})
# File rails/actionpack/lib/action_view/helpers/form_options_helper.rb, line 354
def country_select(method, priority_countries = nil, options = {}, html_options = {})
  @template.country_select(@object_name, method, priority_countries, options.merge(:object => @object), html_options)
end
date_select(method, options = {})
# File rails/actionpack/lib/action_view/helpers/date_helper.rb, line 416
def date_select(method, options = {})
  @template.date_select(@object_name, method, options.merge(:object => @object))
end
datetime_select(method, options = {})
# File rails/actionpack/lib/action_view/helpers/date_helper.rb, line 424
def datetime_select(method, options = {})
  @template.datetime_select(@object_name, method, options.merge(:object => @object))
end
select(method, choices, options = {}, html_options = {})
# File rails/actionpack/lib/action_view/helpers/form_options_helper.rb, line 346
def select(method, choices, options = {}, html_options = {})
  @template.select(@object_name, method, choices, options.merge(:object => @object), html_options)
end
time_select(method, options = {})
# File rails/actionpack/lib/action_view/helpers/date_helper.rb, line 420
def time_select(method, options = {})
  @template.time_select(@object_name, method, options.merge(:object => @object))
end
time_zone_select(method, priority_zones = nil, options = {}, html_options = {})
# File rails/actionpack/lib/action_view/helpers/form_options_helper.rb, line 358
def time_zone_select(method, priority_zones = nil, options = {}, html_options = {})
  @template.time_zone_select(@object_name, method, priority_zones, options.merge(:object => @object), html_options)
end