I may have over-complicated what i need to do but this is what i now have.
I jab a jobs controller that have 2 fields
starts_at as DATETIME
end_time as DATETIME
I save the event_date in a form using a
calendar_date_select :starts_at ,:time => false
I save the date time as
time_select :starts_at, {:twelve_hour => true}
This save the Event date i.e 12/26/2009 and the start time as 7:00 pm
I what need to to also save the event end_time without having to re-enter the date, just the time
time_select :end_time, {:twelve_hour => true}
If i just use the abouve the time is correct but the date dafaults the 01/01/2000
How do I save the date with the same date from starts_at?