如何设置 html.EditorFor helper 的大小?

发布于 2024-10-21 00:59:03 字数 25 浏览 1 评论 0原文

设置生成字段大小的最简单方法是什么?

What is the simplest way to set the size of the generated field?

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

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

发布评论

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

评论(2

倦话 2024-10-28 00:59:03

使用 CSS:

<div class="foo">
    <%= Html.EditorFor(x => x.Foo) %>
</div>

并在 CSS 文件中:

.foo input {
    width: 200px;
}

您还可以实现 自定义 DataAnnotationsModelMetadataProvider 允许您将任何您喜欢的属性附加到生成的输入字段,例如 class,<代码>最大长度,<代码>大小,...

Using CSS:

<div class="foo">
    <%= Html.EditorFor(x => x.Foo) %>
</div>

and in your CSS file:

.foo input {
    width: 200px;
}

You could also implement a custom DataAnnotationsModelMetadataProvider which would allow you to attach any attributes you like to the generated input field such as class, maxlength, size, ...

月下凄凉 2024-10-28 00:59:03

还有另一种选择:您可以将 HTML 属性应用于输入本身,而不是将类附加到输入周围的包装器(但不适用于“EditorFor”):

@Html.TextBoxFor(x => x.Foo, new { @class = "bar" })

进一步讨论: http://michaelware.net/post/2010/01/31/Custom-Attributes-When -使用-HtmlTextBoxFor.aspx

Another option still: rather than appending the class to the wrapper around your input, you can apply HTML properties to the input itself (doesn't work for "EditorFor" though):

@Html.TextBoxFor(x => x.Foo, new { @class = "bar" })

Further discussion: http://michaelware.net/post/2010/01/31/Custom-Attributes-When-Using-HtmlTextBoxFor.aspx

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