I have an ActiveRecord model Event
with a datetime column starts_at
. I would like to present a form, where date and time for starts_at
are chosen separately (e.g. "23-10-2010"
for date and "18:00"
for time). These fields should be backed by the single column starts_at
, and validations should preferably be against starts_at
, too.
I can of course muck around with virtual attributes and hooks, but I would like a more elegant solution. I have experimented with both composed_of
(rdoc), and attribute-decorator (lighthouse discussion, github) without success.
Below is a rough outline of what I would like..
class Event < ActiveRecord::Base
validates_presence_of :start_date
end
# View
# On submission this should set start_date.
form_for @event do |f|
f.text_field :starts_at_date # date-part of start_date
f.text_field :starts_at_time_of_day # time-of-day-part of start_date
f.submit
end
Any help appreciated.
question from:
https://stackoverflow.com/questions/3677531/separate-date-and-time-form-fields-in-rails 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…