Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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>?

share|improve this question

1 Answer

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.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.