I have two form fields on my view page, a date input (with a date selector popup) and a time input.
When passing these values into the model, is it possible to merge them together so they will both go into a single database field with a type of Timestamp? e.g 12/12/2012 + 14:20 and saved to the db as 2012/12/12 14:20:00
Thanks in advance
If you just want to join them together, and you’re fine with the combined field being a string, you could just concatenate.
You would also need to create a field in your DB model for this new timestamp field.