我在我的项目中使用 primefaces 3.0,我已经在 testing1.xhtml 中实现了图表,但是该页面内容需要显示在 main.xhtml 上,但图表不是第一次呈现。仅提供刷新后的图表渲染,但它不应该是这样的..我附上了模型片段供您参考..请帮我解决这个问题..
testing1.xhtml
<ui:composition xmlns="http://www.w3.org/1999/xhtml"
xmlns:ui="http://java.sun.com/jsf/facelets"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:f="http://java.sun.com/jsf/core"
xmlns:p="http://primefaces.prime.com.tr/ui"
xmlns:a4j="http://richfaces.org/a4j"
xmlns:rich="http://richfaces.org/rich"
xmlns:portlet="http://java.sun.com/portlet"
xmlns:c="http://java.sun.com/jstl/core">
<h:form id="testForm">
<p:lineChart id="testChart" value="#{testBean.chart}"
style="float:left; margin-top:150px; border:0px; margin-left:0px; padding:0px; height:140px; width:230px; "/>
<h:form>
</ui:composition>
我从 main.xhtml 调用这个页面
main.xhtml
<body onLoad="loadData();" >
<h:panelGrid style="height:33px;"/>
<h:form style="margin:0px; padding:0px;">
<p:remoteCommand name="loadData" action="#{testBean.chartLoad}" update="testChart" />
<p:panel style="height:auto; width:238px;" id="testPanel" header="Testing" closable="false" toggleable="true">
<ui:include src="testing1.xhtml"/>
</p:panel>
提前致谢..