search for: to_country_select_tag

Displaying 1 result from an estimated 1 matches for "to_country_select_tag".

2006 Jul 08
10
A rant about parameters
...ing your advice here...how do you keep the various different ways methods, paritcularly ActionView helpers, can be called straight? Compounding the problem (and confusing me) was this method further down in the call stack: ---- module ActionView::Helpers class InstanceTag def to_country_select_tag(priority_countries, options, html_options) html_options = html_options.stringify_keys add_default_name_and_id(html_options) content_tag("select", add_options(country_options_for_select(value, priority_countries), options, value), html_options) end end...