使用ajax从行选择启用按钮后未出现页面导航

时间:2012-02-27 07:43:47

标签: jsf-2 primefaces

我正在使用JSF 2.0和primefaces 3.0 我试图在从数据表中选择行

后启用命令(提交)按钮
     <p:datatable ....>
     <p:ajax event="rowUnselect" onstart="showImageButton.disable();" />
     <p:ajax event="rowSelect" onstart="showImageButton.enable();" />   
     </p:datatable>
        <p:commandButton id="commandbuttonid"    widgetVar="showImageButton"   action="#{bean.methodreturningapage}" value="Submit"
                ajax="false"  disabled="true" />   

选择行命令按钮后启用但操作方法未触发。

1 个答案:

答案 0 :(得分:0)

将已禁用的属性更改为#{bean.buttonDisabled}

看看这个问题

p:commandButton not working when disable=“true” initially

和这一个

Re-enabled p:commandButton not firing ajax