I want to use the Bootstrap 3 DateTimePicker. I added it to my ASP.NET project using NuGet.
Here's my BundleConfig.cs:
bundles.Add(new StyleBundle("~/Content/Bootstrap").Include("~/Content/bootstrap.css",
"~/Content/bootstrap-theme.css",
"~/Content/bootstrap-theme.min.css",
"~/Content/bootstrap.min.css",
"~/Content/less/_bootstrap-datetimepicker.less",
"~/Content/less/bootstrap-datetimepicker-build.less"));
bundles.Add(new ScriptBundle("~/Scripts/Bootstrap").Include(
"~/Scripts/moment.min.js",
"~/Scripts/bootstrap.js",
"~/Scripts/bootstrap.min.js",
"~/Scripts/bootstrap-datetimepicker.js",
"~/Scripts/bootstrap-datetimepicker.min.js"));
And I'm using it in my View like this:
<div class="container">
<div class="col-sm-6">
<div class="form-group">
<div class="row">
<div class="col-md-8">
<div id="datetimepicker12"></div>
</div>
</div>
</div>
</div>
<script type="text/javascript">
$(function () {
$('#datetimepicker12').datetimepicker({
inline: true,
sideBySide: true
});
});
</script>
</div>
But it doesn't work; any Ideas?
The easiest way in MVC with bootstrap would be to set the properties in your model with Data Annotations.
Here is a link that should help you. Using Data Annotations for Model Validation
[DisplayName("Owners Date of Birth:")]
Will display in the@Html.LabelFor
and this will be the label for your field.[DataType(DataType.Date)]
This sets the attribute style and can be customized,[DisplayFormat(DataFormatString = "{0:MM/dd/yyyy}", ApplyFormatInEditMode = true)]
This is the display format you would set to show in your Views.public DateTime ODoB { get; set; }
This set the storage type of the data. this will not allow Nullable values.public DateTime? ODoB { get; set; }
if you add the question mark after DateTime this will allow the value to be null.Model:
View:
This display will show differently from IE to Chrome, IE is not yet HTML 5 compatible, but this will let the person filling out the form select each field of the date. there are many different conversions and templates you can create to achieve anything you want from the model. you can actually create your own template for display of any field type using the
[UIHint]
in your model. Here are a few links -Custom templates in Asp.Net MVC
Asp.Net MVC annotated for input/
Editor templates, Data annotations and Telerik - oh my!
Hope this helped you