Anthony Smith
2010-Apr-15 08:29 UTC
[Rails v3] time_zone_select :priority_zones not working properly
When using :priority_zones for time_zone_select in a manner described by the API docs for ActionView::Helpers::FormOptionsHelper I''m getting errors. Here is an API docs example: time_zone_select( "user", ''time_zone'', TimeZone.us_zones, :default => "Pacific Time (US & Canada)") When using this code I get "uninitialized constant ActionView::CompiledTemplates::TimeZone". The first thing I noticed was that TimeZone is camel cased. This seems confusing to me considering TZInfo::Timezone is proper cased. I tried using proper cased Timezone and continued to get the same error. Next, I tried using TZInfo::Timezone, this worked. time_zone_select( "user", ''time_zone'', TZInfo::Timezone.us_zones, :default => "Pacific Time (US & Canada)") It seems that I''m either doing it wrong, there is a different way to do it in Rails 3.0, the documentation is wrong, or there is a bug (understandable since I''m using Rails 3.0 beta). Can anybody shed light on this? Documentation: http://api.rubyonrails.org/classes/ActionView/Helpers/FormOptionsHelper.html#M001626 -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.