我在WAS 8.0.0.10上使用PF 5.1 + PF Extensions 3.0.0 + OmniFaces 1.8.1

尝试从here制作以下示例
<pe:triStateCheckbox/>但当我更改组件状态时未调用侦听器,均未给出错误。

这是我的JSF页面代码:

<pe:triStateCheckbox style="vertical-align:middle;" value="#{bean.notification}">
    <p:ajax listener="#{bean.toggleNotification}"/>
</pe:triStateCheckbox>


和豆:

private int notification;

public void toggleNotification() {
    System.out.println("toggle");
}

//getters and setters


我可能做错了什么?谢谢。

最佳答案

好的,展示柜中的代码与现实世界中的代码不同。进入github,我们需要指定事件名称:

<pe:triStateCheckbox id="ajaxTriState" value="#{triStateCheckBoxController.value2}">
       <p:ajax event="change"
               update="growl"
               listener="#{triStateCheckBoxController.addMessage}"/>
</pe:triStateCheckbox>

关于jsf - pe:triStateCheckbox不适用于p:ajax,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/29393082/

10-11 03:29