如何指定列表框中显示的项目数(高度)
我有这个,它显示了列表框中的所有项目,但其中有很多项目,
<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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以将 select 元素的“size”属性设置为 5。如下所示:
You could set the "size" attribute on the select element to 5. Like this:
如果您使用 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})