I have the need to capture a time and time zone from users of a rails 2.3.8 app, but have been unable to think of a clean solution to create and parse the selections.

Ideally I would have a drop-down menus for the following:

  • hour (1-12)
  • minute (0-59)
  • AM/PM
  • Time Zone

Is there a gem/plugin that accomplishes what I am looking for? Will I need to store both the time and time zone in the database? What is the best strategy for storage?

I'll eventually need to spit these values out in UTC, but a user should be able to go back and review the time in the correct time zone.

link|improve this question

Did you ever figure out how to do a 12 hour with AM/PM select element? – Andrew Jul 16 '11 at 20:27
IIRC, there was a 12-hour time monkey patch. Not the cleanest solution, but it worked within my deadline. – jessecurry Jul 17 '11 at 3:16
feedback

1 Answer

up vote 9 down vote accepted

You can get time zone selects with the appropriate methods:

Similarly, there's date_select for dates.

Storage:

If the timezone is specific to the user and doesn't change, then store their time zone in their user record and set it when you load the current_user. Rails will convert times to/from UTC and always store UTC in the database and do the automatic convert to that default timezone for you (including daylight savings!). Easiest way to do it.

use_zone(zone) lets you override the default zone for a block, so you can accept a form value and set it with that function and set your value in that block.

UPDATE: I wrote up some Rails timezone examples as a blog entry.

link|improve this answer
I saw the methods to create a timezone selector, but that selector is not bound to a Time object. Is this binding something that I'll have to do myself? – jessecurry Oct 22 '10 at 13:33
A timezone won't be bound to a Time object. Presumably, you're using form_for @thing on the thing that you're trying to capture the date/time/zone for. – wesgarrison Oct 22 '10 at 21:58
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.