Sterling Rose Design Blog
Rendering datetime in a user's timezone
Authored by Dana Jones
January 13, 2009 21:46
6 Comments
Tags: Rails date and time
Leave a Comment
Authored by Dana Jones
January 13, 2009 21:46
6 Comments
Tags: Rails date and time
We recently had a client who wanted to account for a user’s time zone when they entered dates for various fields. For example, if a user were to input a new bill, the bill entry date should default to the current date.
The solution to this problem involved 1) storing a user’s time zone in a string field in the User model, and 2) adjusting
For part 1, we used Rails’ built-in
For part 2, the solution was to add a method to the User model to get the user’s current date:
This leaves the door open for you to pass in any time at all, and have it parsed for the user’s current date.
CommentsTime.now is what we had been using, but that would only give the right date if you were on the correct side of the magic UTC dividing line. The solution to this problem involved 1) storing a user’s time zone in a string field in the User model, and 2) adjusting
Time.now for that time zone.For part 1, we used Rails’ built-in
time_zone_select method:<%= form.label :time_zone, "Time Zone" %>
<%= time_zone_select :time_zone, @user.time_zone, nil, :default =>
"Pacific Time (US & Canada)" %>For part 2, the solution was to add a method to the User model to get the user’s current date:
def my_date(input=Time.now)
Time.zone = time_zone
d = input.to_datetime
user_time_zone_date = Time.zone.utc_to_local(d)
user_time_zone_date
endThis leaves the door open for you to pass in any time at all, and have it parsed for the user’s current date.
I’ll use this method too. I hope it’ll help to make my work easer.
Posted September 13, 2011 by proofreading services
Posted September 13, 2011 by proofreading services
I discovered numerous fascinating stuff in your blog particularly the on going conversation. From the tons of comments on your articles.Great work.Keep it up.
Posted December 20, 2011 by Writing an Essay
Posted December 20, 2011 by Writing an Essay
I discovered numerous fascinating stuff in your blog particularly the on going conversation. From the tons of comments on your articles.Great work.Keep it up.
Posted December 30, 2011 by male breast reduction surgery
Posted December 30, 2011 by male breast reduction surgery
Leave a Comment


dissertation example
Posted September 06, 2011 by Mikeeq