h:当p:对话框的模态属性设置为true时,始终启用selectOneMenu。 IE6

h:当p:对话框显示时(对话框的模态属性设置为true),总是启用selectOneMenu。)IE6 但是,在IE8或其他浏览器中,它运行良好。     
已邀请:
嗯,听起来你正在引用选择菜单是可见的,即使它应该隐藏在其他元素后面? 这是一个选择框的问题(而不是一个jsf问题),我使用的解决方案是一个包含下面代码的组件,我包含在任何可能出现在选择框顶部的菜单等中
    <!-- hack: make the selectBoxes behind the div really hidden -->
<script>
document.write('&lt;!--[if lte IE 6.5]&gt;&lt;iframe src="javascript:false;"       
                   class="hiddenIframeMenu"&gt;&lt;/iframe&gt;&lt;![endif]--&gt;');
</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     

要回复问题请先登录注册