尝试在手风琴中更新Primefaces图表

时间:2012-01-12 15:44:41

标签: jsf-2 primefaces

我正在尝试刷新位于手风琴标签上的Prime面部图表。当我单击按钮进行更新时,只更新当前打开的选项卡中的图表???

我正在使用Primefaces 3.0

<h:form id="content">
    <p:accordionPanel style="margin-top: 30px; background-color: white;">
         <p:tab title="Microsite and Multibrand">
             <p:lineChart id="dropoffChart1" value="#{gvBean.dropoffChart1.chart}"/>
         </p:tab>
         <p:tab title="Microsite and Multibrand">
             <p:lineChart id="dropoffChart2" value="#{gvBean.dropoffChart2.chart}"/>
         </p:tab>
    </p:accordionPanel>

    <p:commandLink actionListener="#{gVController.day}" update="content" title="day">
         <h:graphicImage styleClass="timeSetButton" value="day.png"/>
    </p:commandLink>
</h:form>

1 个答案:

答案 0 :(得分:0)

我通过在accordian标签中添加属性dynamic =“true”来解决这个问题。