gpt4 book ai didi

ajax - p :ajax not working with p:commandButton

转载 作者:行者123 更新时间:2023-12-01 11:44:25 25 4
gpt4 key购买 nike

我尝试这样做,但我从来没有得到它的工作;为什么不支持 ajax ?

<p:commandButton value="MAJ" rendered="#{LigneXL.resultat eq 'Pas de FMD'}" onclick="confirmation.show()"  >
<f:setPropertyActionListener target="#{parserXls.selectitem}" value="#{LigneXL}" />
<p:ajax event="click" listener="#{parserXls.listenercomposant()}"/>
</p:commandButton>

监听器永远不会被执行 为什么 !!!
我正在尝试根据 selectitem 获取另一个对象
public void listenercomposant(){
composantitem=ChercherComposant(selcetitem.getRefcomposant(), selcetitem.getReffabricant());
}

最佳答案

p:commandButton已经是本地人 ajax enabled .所以没有必要有 p:ajax在里面,你可以使用

  <p:commandButton value="TestButton" actionListener="#{bean.saveSomething}" id="id"    
update="panel" />

如您所见 p:commandButton已经有和 actionListener 所以只需使用它。

关于ajax - p :ajax not working with p:commandButton,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16665332/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com