Files
LeafWeb/WebCms/Views/Shared/EditorTemplates/DateTime.cshtml
T
poprhythm 8452a9cce0 Add registration workflow
Update unobtrusive Validation
2020-01-10 14:52:11 -05:00

29 lines
600 B
Plaintext

@using System.Threading
@model DateTime?
@{
Layout = "_FieldLayout.cshtml";
DateTime dt;
if (Model.HasValue)
{
dt = (DateTime)Model;
}
else
{
dt = DateTime.Now;
}
}
@Html.TextBoxFor(m => m,
new
{
@class="form-control datepicker",
data_provide="datepicker",
data_date_language="globalize",
data_date=dt,
data_date_format=Thread.CurrentThread.CurrentUICulture.DateTimeFormat.ShortDatePattern.Replace("M", "m"),
data_date_today_highlight="true",
data_date_today_btn="false"
})