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

23 lines
467 B
Plaintext

@model TimeSpan?
@{
Layout = "_FieldLayout.cshtml";
var ts = Model ?? TimeSpan.FromMinutes(10);
}
@Html.TextBoxFor(m => m,
"hh\\:mm",
new
{
@Value = ts.ToString("hh\\:mm"),
@class="form-control timepicker",
data_provide="timepicker",
data_minute_step="5",
data_show_meridian="false",
data_disable_focus="true",
data_template = "dropdown",
data_default_time="value"
})