harp wrote:
hi all,
i have a user object that includes a birthday datetime field. when the user is created, he selects the date via the helper
datetime_select 'user', 'birthday'
which works great. the date is saved to the database, and it works great...but when i display the datetime_select helper after the user is created, the correct date isn't displayed - - the previous time is selected.
how do i place the user's birth-date as the selected date?
i tried
datetime_select 'user', 'birthday', :value => @session['user'].birthday
In your controller you've got to set @user = session['user']