将 CSS 类添加到 DataAnnotations MVC 3 中的字段

发布于 2024-10-15 08:54:45 字数 788 浏览 6 评论 0原文

当我使用 Html.EditorForModel() 时,是否可以从 DataAnnotations (元数据)添加 CSS 类 - 没有自定义模板...

像这样的 [DataType(CssClass = "DateTime")]

public class TestInput
{
    [Required(ErrorMessage = "Name is required.")]
    public string Name { get; set; }

    [Required, StringLength(500)]
    [DataType(DataType.MultilineText)]
    public string Description { get; set; }

    [Required]
    [DataType(CssClass = "DateTime")]
    public DateTime Date { get; set; }

    [HiddenInput(DisplayValue = false)]
    public int Id { get; set; }
}

这是我的链接参考: http:// bradwilson.typepad.com/blog/2009/10/aspnet-mvc-2-templates-part-2-modelmetadata.html

Is it possible to add a CSS class from DataAnnotations (metadata) when I use Html.EditorForModel() - without a custom template...

Something like this [DataType(CssClass = "DateTime")]

public class TestInput
{
    [Required(ErrorMessage = "Name is required.")]
    public string Name { get; set; }

    [Required, StringLength(500)]
    [DataType(DataType.MultilineText)]
    public string Description { get; set; }

    [Required]
    [DataType(CssClass = "DateTime")]
    public DateTime Date { get; set; }

    [HiddenInput(DisplayValue = false)]
    public int Id { get; set; }
}

Here is a link to what I am referring to: http://bradwilson.typepad.com/blog/2009/10/aspnet-mvc-2-templates-part-2-modelmetadata.html

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

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

发布评论

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

评论(1

時窥 2024-10-22 08:54:45

这是一个有趣的想法。不知道如何实现一个属性来实现这一点,但我不得不说,当您可以执行诸如 Display(Name="Display Name") 之类的操作时,这是可能的。

不知道为什么你反对模板。在创建这样的东西之前,我认为最好的选择是为“MyDateTime”等自定义类型创建 EditorTemplate 并使用 UIHint 来指示。 HTML 帮助器的一行可以设置您想要的类。对于像类/可重用性这样简单的事情来说,这不是最好的方法,但目前是这样。

That's an interesting idea. Not sure how to go about implementing an attribute that does that, but I would have to say its possible when you can do things like Display(Name="Display Name").

Not sure why youre against templates. Until such a thing is created I think your best option is to create an EditorTemplate for a custom type like "MyDateTime" and use UIHint to indicate. One line of an HTML helper could set the class you're after. Not the best approach for something as simple as classes/reusability but eh for now.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文