Tôi cần một số dòng hướng dẫn về cách cài đặt Date Picker Bootstrap 3 trên dự án MVC 5 sử dụng công cụ Razor. Tôi đã tìm thấy liên kết này ở đây nhưng không thể làm cho nó hoạt động trong VS2013.
Sao chép từ ví dụ trong liên kết sau ở trên, tôi đã thực hiện như sau:
bundles.Add(new ScriptBundle("~/bundles/bootstrap").Include(
"~/Scripts/bootstrap.js",
"~/Scripts/bootstrap-datepicker.js", // ** NEW for Bootstrap Datepicker
"~/Scripts/respond.js"));
bundles.Add(new StyleBundle("~/Content/css").Include(
"~/Content/bootstrap.css",
"~/Content/bootstrap-datepicker.css", // ** NEW for Bootstrap Datepicker
"~/Content/site.css"));
Sau đó, tôi đã thêm tập lệnh vào chế độ xem chỉ mục như sau
@section Scripts {
@Scripts.Render("~/bundles/jqueryval")
<script type="text/javascript">
$('.datepicker').datepicker(); //Initialise any date pickers
</script>
}
Bây giờ, làm thế nào để gọi bộ chọn ngày ở đây?
<div class="form-group input-group-sm">
@Html.LabelFor(model => model.DropOffDate)
@Html.TextBoxFor(model => model.DropOffDate, new { @class = "form-control", placeholder = "Enter Drop-off date here..." })
@Html.ValidationMessageFor(model => model.DropOffDate)
</div>