网格中的 Telerik MVC DatePicker

发布于 2024-12-08 10:46:18 字数 311 浏览 0 评论 0原文

我在 Telerik 网格中有一个 Telerik MVC DatePicker。我想让用户能够删除或“清除”日期。这是行不通的。有一些验证可以阻止它。编辑器模板中模型的类型是可为空的日期。这是编辑器模板:

<%@ Control Language="C#" Inherits="System.Web.Mvc.ViewUserControl<DateTime?>" %>
<%= Html.Telerik().DatePickerFor(m => m) %>

有什么想法吗?

史蒂夫

I have a Telerik MVC DatePicker in a Telerik Grid. I want to let the users be able to delete or "clear out" the date. This is not working. There is some validation that prevents it. The type of the model in the editor template is a nullable date. Here is the editor template:

<%@ Control Language="C#" Inherits="System.Web.Mvc.ViewUserControl<DateTime?>" %>
<%= Html.Telerik().DatePickerFor(m => m) %>

Any ideas?

Steve

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

一桥轻雨一伞开 2024-12-15 10:46:18

如果我想要取消约会的能力。我必须检查服务器端 Request.Forms 集合

if(TryUpdateModel(item)) //item.EndDate will have the previous value, even if user nulled it out
{
    if (Request.Form["EndDate"] == null) //only this will have a null value if user blanked it out
    {
       item.EndDate = null;
    }
}

If I wanted the ability to null out a date. I had to check on the server sides Request.Forms collection

if(TryUpdateModel(item)) //item.EndDate will have the previous value, even if user nulled it out
{
    if (Request.Form["EndDate"] == null) //only this will have a null value if user blanked it out
    {
       item.EndDate = null;
    }
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文