h:当p:对话框显示时(对话框的模态属性设置为true),总是启用selectOneMenu。)IE6
但是,在IE8或其他浏览器中,它运行良好。
答案 0 :(得分:0)
选择框是一个ie6问题(而不是jsf问题),我使用的解决方案是一个包含下面代码的组件,我包含在可能出现在选择框顶部的任何菜单等
<!-- hack: make the selectBoxes behind the div really hidden -->
<script>
document.write('<!--[if lte IE 6.5]><iframe src="javascript:false;"
class="hiddenIframeMenu"></iframe><![endif]-->');
</script>
css:
.hiddenIframe { display:none; display:block; position:absolute; top:0; left:0;z-index:-1; filter:mask(); width:3210px; height:3210px; }
有关bug +解决方案的更多信息可以在这里找到:
http://www.targetprocess.com/agileproductblog/2006/07/ie6-select-and-z-index-problem.html