Displaying 1 result from an estimated 1 matches for "html_month_select".
2007 Jan 24
0
ActionView::Helpers::InstanceTag#to_date_tag help
...def to_date_tag()
defaults = DEFAULT_DATE_OPTIONS.dup
date = value(object) || Date.today
options = Proc.new { |position| defaults.merge(:prefix =>
"#{@object_name}[#{@method_name}(#{position}i)]") }
html_day_select(date, options.call(3)) +
html_month_select(date, options.call(2)) +
html_year_select(date, options.call(1))
end
</code>
Specifically, where are html_day_select, html_month_select, and
html_year_select defined? Is there a method_missing definition that I''m
not finding that''s handling these calls?
--~-...