如何指定列表框中显示的项目数(高度)

发布于 2024-09-08 12:35:45 字数 236 浏览 4 评论 0原文

我有这个,它显示了列表框中的所有项目,但其中有很多项目,

    <label for=”Application”>Application:</label>
    <%= Html.ListBox("SelectedCategories", Model.Applications)%>

有没有办法只显示 5 个项目并添加滚动条(与增加列表框的高度相比)

I have this and it shows all of the items in the listbox but there are alot of them

    <label for=”Application”>Application:</label>
    <%= Html.ListBox("SelectedCategories", Model.Applications)%>

is there a way to show just show 5 items and add a scrollbar (compared to increasing the height of the listbox)

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

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

发布评论

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

评论(2

素手挽清风 2024-09-15 12:35:45

您可以将 select 元素的“size”属性设置为 5。如下所示:

<%= Html.ListBox("SelectedCategories", Model.Applications, new {size=5})%>

You could set the "size" attribute on the select element to 5. Like this:

<%= Html.ListBox("SelectedCategories", Model.Applications, new {size=5})%>
疧_╮線 2024-09-15 12:35:45

如果您使用 MVC5.2 +,请尝试以下操作:

@Html.ListBoxFor(model => model.selected_categories,Model.categories,new { size = 5})

In case you use MVC5.2 +, try this:

@Html.ListBoxFor(model => model.selected_categories,Model.categories,new { size = 5})

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