IceFaces 3.3:ace:对话框不能与IE8一起使用

时间:2013-08-30 10:57:19

标签: javascript internet-explorer icefaces

我正在使用IceFace 3.3.0和MyFaces。我有ace问题:对话框。它不能在IE 7或8上运行,它可以与任何其他浏览器一起使用。

这是一个显示问题的简单示例:

<?xml version="1.0" encoding="ISO-8859-1" ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xml:lang="de" lang="de" xmlns="http://www.w3.org/1999/xhtml"
  xmlns:h="http://java.sun.com/jsf/html"
  xmlns:icecore="http://www.icefaces.org/icefaces/core"
  xmlns:ace="http://www.icefaces.org/icefaces/components"
  xmlns:ice="http://www.icesoft.com/icefaces/component"
>
<h:head>
  <title></title>
</h:head>
<h:body>
<ace:dialog id="helpDialog" header="Help" widgetVar="helpDialog"
  closable="true" modal="true" draggable="false" showEffect="clip"
  hideEffect="fade" closeOnEscape="true" width="400" height="600">
  <h:outputText value="Help Dialog" />
</ace:dialog>

<h:form id="myform">
  <ace:panel id="mypanel" header="Test" closable="false" toggleable="false">
    <h:commandLink immediate="true" value="&gt; Dialog" onclick="helpDialog.show();" />
  </ace:panel>
</h:form>
</h:body>
</html>

在IE8上,此代码不会显示对话框,并在加载页面时产生JavaScript错误:

SCRIPT438 object doesn't support this property or method

此生成的行上出现JavaScript错误:

helpDialog = ice.ace.create("Dialog",["helpDialog_main",{"isVisible":false,"minHeight":0,"width":400,"height":600,"draggable":false,"modal":true,"show":"clip","hide":"fade","title":"Help","ariaEnabled":true}])

我已经尝试过不同版本的MyFaces甚至是Mojarra,所以我认为这是一个问题。

感谢任何帮助!

1 个答案:

答案 0 :(得分:0)

对话框必须包含在表单中,甚至内容也可以用表单括起来,如链接所示。

<h:form>
  <ace:dialog id="helpDialog" header="Help" widgetVar="helpDialog"
    closable="true" modal="true" draggable="false" showEffect="clip"
    hideEffect="fade" closeOnEscape="true" width="400" height="600">
    <h:outputText value="Help Dialog" />
  </ace:dialog>
</h:form>

有关详细信息,请Ace Dialog