使用jquery picker插件作为datetime属性的编辑器模板

时间:2015-03-27 18:51:40

标签: c# .net asp.net-mvc

我找到了有趣的jquery datetime plugin,我希望将其设置为我的asp.net mvc 5应用程序中所有DateTime属性的编辑器模板。

我知道我应该在Shared / EditorTemplate中添加一些代码,但我没有进一步。

1 个答案:

答案 0 :(得分:1)

查看

@Html.TextboxFor(m => m.PROPERTY, new{ data_field="date",@readonly="readonly"}
<div id="dtBox"></div>

@section scripts{
 @Scripts.Render("~/bundles/jquerydatetimeplugin") // this is obviously managed in BundleConfig.cs
 $(function()
  {
    $("#dtBox").DateTimePicker();
  });
 }

<强> Layout.cshtml

....
  @Scripts.Render("~/bundles/jquery")
  @RenderSection("scripts", required: false)
</body>
</html>