Kendo DateTimePicker在提交后更改格式

时间:2015-03-31 09:55:29

标签: .net asp.net-mvc date kendo-ui kendo-datetimepicker

我在kendo网格弹出编辑器中有kendo datetimepicker。 我用模型描述了模型中的字段:

[DisplayFormat(DataFormatString = "{0:dd.MM.yyyy HH:mm:ss}", ApplyFormatInEditMode = true)]

public DateTime Date { get; set; }

在EditorTemplate中

@Html.Kendo().DateTimePickerFor(model => model.Date).Value(DateTime.Now).Format("dd.MM.yyyy HH:mm")

我也有DateTimeBinder

public override object BindModel(ControllerContext controllerContext, ModelBindingContext bindingContext)
    {
        var displayFormat = bindingContext.ModelMetadata.DisplayFormatString;
        var value = bindingContext.ValueProvider.GetValue(bindingContext.ModelName);            

        if (!string.IsNullOrEmpty(displayFormat) && value != null && !String.IsNullOrWhiteSpace(value.AttemptedValue))
        {
            DateTime date;
            displayFormat = displayFormat.Replace("{0:", string.Empty).Replace("}", string.Empty);

            if (DateTime.TryParseExact(value.AttemptedValue, displayFormat, CultureInfo.InvariantCulture, DateTimeStyles.None, out date))
            {
                return date;
            }
            else
            {
                bindingContext.ModelState.AddModelError(bindingContext.ModelName, string.Format("{0} Incorrect Format", value.AttemptedValue));
            }
        }

        return base.BindModel(controllerContext, bindingContext);
    }

问题是当我保存此弹出窗口并到达控制器服务器端的模型时,格式为dd.MM.yyyy H:mm:ss not dd.MM.yyyy HH:mm:ss。例如,如果我在这个时间保存31.03.2015 08:56,在服务器上提交后,它将变为31.03.2015 8:56。你有这种情况吗??

1 个答案:

答案 0 :(得分:0)

您可以在下面使用这种方法,没有任何问题。

<强>型号:

[DisplayFormat(DataFormatString = "{0:dd/MM/yyyy}", ApplyFormatInEditMode = true)]
[Display(Name = "Start Date")]
public DateTime? StartDate{ get; set; }

查看:

@Html.LabelFor(m => m.StartDate)
@(Html.Kendo().DatePickerFor(m => m.StartDate)
    .Animation(true)
    .Culture("tr-TR") //Set culture
    .Footer(false)
    .Format("dd.MM.yyyy")
    .Min(new DateTime(1900, 1, 1)) //Set min date of the datepicker
    .Max(new DateTime(2099, 12, 31)) //Set min date of the datepicker
    //.Value(DateTime.Today) //Set the value of the datepicker
    //.HtmlAttributes(new { @class = "k-datepicker" })
)

我认为你不需要&#34; DateTimeBinder&#34;。希望这会有所帮助...