如何在t:selectOneListbox中添加水平ScrollBar?
我无法在呈现 HTML
I can't display the entire content of my elements in my <t:selectOneListbox>
which renders a HTML <select>
element. How can I add a horizontal scrollbar to a <t:selectOneListbox>
?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是仅 MSIE 的错误。当您在 HTML
这不是 JSF 特有的,JSF 无法解决。对于这个特定问题有很多解决方案,大多数是基于 JavaScript 的。您可以在这个问题中找到它们:IE 中的下拉列表宽度。
This is a MSIE-only bug. When you set a fixed width on a HTML
<select>
element, then MSIE will also apply this on the opened list while the normal webbrowsers like Firefox, Chrome and others will expand the list to the content width.This is not specific to JSF and cannot be solved by JSF. There are a lot of solutions for this particular issue, the majority is JavaScript based. You can find them all in this question: Dropdownlist width in IE.