<p:commandButton id="changepwd" value="Change Password" type="button"
onclick="changepwdPanel.show()" update="dialog,messages" appendToBody="true" />
此按钮显示<p:dialog>
。它在Firefox和Chrome中运行良好,但在Internet Explorer中无效。
这是如何引起的?如何解决?
答案 0 :(得分:1)
尝试使用:
<f:facet name="first">
<meta http-equiv="X-UA-Compatible" content="IE=9" />
</f:facet>
<h:head>
中的, 我有类似的问题,它对我有用。