我正在使用:
的Linux
PrimeFaces 3.4.1
Glassfish 3.1.2.2(build 5)
FireFox 10.0.7
我有一个消息驱动的bean,在触发时,我想通过使用growl在浏览器中显示的PrimePush数据发送。这是MDB的onMessage()中的内容。这部分似乎工作正常,因为浏览器正在收到一些东西。
pushContext = PushContextFactory.getDefault().getPushContext();
pushContext.push("/notifications",
new FacesMessage("Test Summary", "Test Detail"));
当这个MDB触发时,我从firefox错误控制台中获得以下内容。
Error: not well-formed
Source File: http://localhost:8080/test/primepush/notifications?X-Atmospheretracking-id=0&X-Atmosphere-Framework=1.0&X-Atmosphere-Transport=long-polling&X-Cache-Date=0&_=1351363941008
Line: 1, Column: 1
Source Code:
{"data":{"summary":"Test Summary","detail":"Test Detail","severity":"INFO 0","rendered":false}}
Error: growl is not defined
Source File: http://localhost:8080/test/test.xhtml
Line: 25
这是text.xhtml中的代码。
<h:form id="test_form">
<p:growl id="growl" for="items" showDetail="true"/>
<p:socket onMessage="handleMessage" channel="/notifications"/>
<script type="text/javascript">
function handleMessage(data) {
data.severity = 'info';
growl.show([data]);
}
</script>
</h:form>
答案 0 :(得分:1)
尝试
<p:growl widgetVar="growl" showDetail="true" />
表格外的