p:commandButton不执行动作功能

时间:2014-05-08 15:49:06

标签: jsf primefaces javabeans commandbutton

我有一个p:commnandButton如下

    <p:commandButton id="previouscat" 
                   value="Go to #{categoryBean.getPreviousCategory().name}" 
                   style="margin:0px;" icon="ui-icon-back" update="@all" 
                   action="#{categoryBean.selectPreviousCat}"/>

位于表单内。现在我的问题是,当点击按钮时,动作不会执行因为它应该改变按钮的值。我尝试过设置动作功能,如categoryBean.selectPreviousCat&amp; categoryBean.selectPreviousCat()没有成功。

public void selectPreviousCat(){
        this.selectedCategory = this.getPreviousCategory();
}

0 个答案:

没有答案