0

嗨,我遇到了 IE -8 的问题,因为当我在 Chrome 和 mozilla 中执行我的代码时,它很好!但在 IE-8 中它没有正确执行。说 dialog.show 没有定义

<p:calendar value="#{bean.method}" mode="inline">
<p:ajax update="@all" event="dateSelect" listener="#{Bean.method1}" oncomplete="dialog.show()" /> 

<p:schedule id="dialog" initialDate="#{Bean.method3}"/>

显示错误。当我单击日期日历时,将显示日程表中的日期。但是在 IE-8 中,当我单击日历和日程表消失的日期时,当我刷新页面时,我看到我的选定日期已被选中,并且我还发现了一个错误,如上所示..(如果有任何问题,对不起整齐地解释是错误的:))

4

3 回答 3

1

我遇到了很多关于 IE 和 primefaces 组件的问题,直到我有一个一次性解决所有问题的修复程序。我意识到,如果我把下面的代码放在头脑中的第一行,一切都会像魅力一样。

<?xml version='1.0' encoding='UTF-8' ?>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml"
          xmlns:h="http://java.sun.com/jsf/html"
          xmlns:p="http://primefaces.org/ui"
          xmlns:f="http://java.sun.com/jsf/core">
        <h:head>

        <f:facet name="first">
          <meta http-equiv="X-UA-Compatible" content="IE=edge" />
         <meta content="text/html; charset=UTF-8" http-equiv="content-type"/>
        </f:facet>
       // other head code goes here

       </h:head>
于 2013-08-21T09:11:13.657 回答
0

尝试添加和widgetVar="myschedule"更改<p:schedule

oncomplete="dialog.show()" 

进入

oncomplete="myschedule.update();" 
于 2012-04-30T09:08:32.540 回答
0

试着把它放在文件 xhtml.xml 的第一行。

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
于 2013-03-05T17:48:11.143 回答