This question is locked. New answers and comments are not allowed.
Hello,
I was wondering/hoping if there was a way to extend the date/time picker to allow the user to edit the seconds for the time. I tried changing the format (see code below) to one that includes seconds, but nothing changes..
Thanks!
I was wondering/hoping if there was a way to extend the date/time picker to allow the user to edit the seconds for the time. I tried changing the format (see code below) to one that includes seconds, but nothing changes..
@model DateTime@(Html.Telerik().DateTimePicker() .Name(ViewData.TemplateInfo.GetFullHtmlFieldName(string.Empty)) .HtmlAttributes(new { id = ViewData.TemplateInfo.GetFullHtmlFieldName(string.Empty) + "_wrapper" }) .Value(Model > DateTime.MinValue? Model : DateTime.Today)
.Format(@Thread.CurrentThread.CurrentUICulture.DateTimeFormat.ShortDatePattern + " " + @Thread.CurrentThread.CurrentUICulture.DateTimeFormat.LongTimePattern))Thanks!