How to implement EditorFor DateTime?
I already have editors for Date and Time separately. Can I use it for my DateTime editor?
Are there any suggestions, how to do it?
Date editor:
@model DateTime
@Html.TextBox(string.Empty, (Model != default(DateTime) ? Model.ToShortDateString() : string.Empty), new { @class = "date form-control" })
Time editor:
@model DateTime?
@Html.TextBox(string.Empty, (Model.HasValue ? Model.Value.ToString("HH:mm") : string.Empty), new { @class = "time form-control" })
I am using jQuery UI datepicker for date editor. Timepicker is also jQuery plugin.