• MVC自定义编辑视图,DateTime类型属性显示jQuery ui的datapicker


    实现的效果为:在编辑视图中,对DateTime类型的属性,显示jQuery UI的datepicker。效果如下:

    1


    Student.cs

        public class Student
        {
            public int Id { get; set; }
            public string Name { get; set; }
            public DateTime? JoinTime { get; set; }
        }

    HomeController:

        public class HomeController : Controller
        {
            public ActionResult Index()
            {
                return View(new Student(){Id = 1, JoinTime = DateTime.Now, Name = "Darren"});
            }

        }

    Views/Shared/EditorTemplates文件夹中创建DateTime.cshtml,视图名称必须和属性类型保持一致。另外,这里时间格式的设置必须和datepicker保持一致。

    @model DateTime?
    @Html.TextBox("", Model.HasValue ? Model.Value.ToString("yyyy-MM-dd") : "", new {@class = "date"})

    Home/Index.cshtml视图中:

    @model MvcApplication1.Models.Student
     
    @{
        ViewBag.Title = "Index";
        Layout = "~/Views/Shared/_Layout.cshtml";
    }
     
    <link href="~/Content/Site.css" rel="stylesheet" />
    <link href="~/Content/themes/base/jquery.ui.all.css" rel="stylesheet" />
     
    @using (Html.BeginForm())
    {
        @Html.EditorForModel()
    }
     
    @section scripts
    {
        <script src="~/Scripts/jquery-1.8.2.min.js"></script>
        <script src="~/Scripts/jquery-ui-1.8.24.min.js"></script>
        <script type="text/javascript">
            $(function() {
                $('.date').datepicker({
                    dateFormat: 'yy-mm-dd'
                });
            });
        </script>
    }
     
  • 相关阅读:
    NS2网络模拟(2)-丢包率
    NS2网络模拟(3)-吞吐率
    NS2网络模拟(4)-吞吐率图
    NS2网络模拟(5)-homework01.tcl
    nagios
    Javascript 统计复选框选中个数
    JUnit单元测试实践:测试工具类和方法(EmptyUtils)
    2013年工作中遇到的20个问题(Bug):161-180
    2013年工作中遇到的20个问题(Bug):161-180
    数据持久层(DAO)通用API的实现
  • 原文地址:https://www.cnblogs.com/darrenji/p/3754844.html
Copyright © 2020-2023  润新知