我正在使用这样的jquery datetimepicker:
<script type="text/javascript">
$(document).ready(function () {
$("#LessonDateTime").datetimepicker(
);
});
</script>
如果在文本框中没有值,则默认为今天的日期,如果有值,则日期时间选择器转到 1899,如下图所示:
我正在使用视图模型进行绑定,如下所示:
public class AppointmentViewModel
{
public long? UserId { get; set; }
public long Id { get; set; }
public string AppointmentInstructorName { get; set; }
[DisplayFormat(ApplyFormatInEditMode =true, DataFormatString ="{0:dd/MMM/yyyy h:mm tt}")]
public DateTime? LessonDateTime { get; set; }
public string AppointmentLessonAddress { get; set; }
}
看法:
@{ViewBag.PageTitle = "Edit an Appointment";}
<script type="text/javascript">
$(document).ready(function () {
$("#LessonDateTime").datetimepicker(
);
});
</script>
@using (Html.BeginForm())
{
@Html.AntiForgeryToken()
@Html.Hidden("userId", Model.UserId)
<div class="row">
<div class="col-md-8">
<div class="panel">
<div class="panel-heading tabbable" tabindex="0"><h1>Edit Appointment Details</h1></div>
<div class="panel-body">
<div class="form-group row">
<div class="col-sm-6">
@Html.LabelFor(model => model.AppointmentInstructorName, "Instructor Name", htmlAttributes: new { @class = "control-label" })
@Html.EditorFor(model => model.AppointmentInstructorName, new { htmlAttributes = new { @class = "form-control" } })
</div>
</div>
<div class="form-group row">
<div class="col-sm-6">
@Html.LabelFor(model => model.LessonDateTime, "Lesson Date and Time", htmlAttributes: new { @class = "control-label" })
@Html.EditorFor(model => model.LessonDateTime, new { htmlAttributes = new { @class = "form-control" } })
</div>
</div>
<div class="form-group row">
<div class="col-sm-6">
@Html.LabelFor(model => model.AppointmentLessonAddress, "Address (if different)", htmlAttributes: new { @class = "control-label" })
@Html.EditorFor(model => model.AppointmentLessonAddress, new { htmlAttributes = new { @class = "form-control" } })
</div>
</div>
<div class="form-group row">
<div class="col-sm-6">
<input type="submit" class="btn btn-primary form-control" value="Submit" />
</div>
</div>
</div>
</div>
</div>
</div>
}