<p:commandbutton>的Action属性不称为</p:commandbutton>

时间:2013-04-15 21:33:49

标签: java jsf jsf-2 xhtml facelets

我尝试使用addMoreStatus的{​​{1}}属性调用action方法,但不会调用它。我还使用了ajax来查看会话变量的值是否发生了变化。不幸的是,获取更多状态内的会话变量永远不会更新。 toIndex总是显示5。

1)的XHTML

<p:commandButton>

2)statusBean

<h:body>
    <c:if test="#{statusBean.init == null}"/>
    <h:form id="foo">
        <p:commandButton id="bar" action="#{statusBean.addMoreStatus}"
             value="test" update="test"></p:commandButton> 

        <h:outputLabel value="#{sessionScope['toIndex']}" id="test" />
    </h:form>
</h:body>

0 个答案:

没有答案