我需要在我的模型中设置一些值,并将页面导航到另一个,但按钮单击时什么也没发生(页面导航和方法触发都没有)……我的代码在轮播之外工作得很好,但在轮播内它不起作用(没有页面导航)
<p:carousel value="#{catalog.getServices()}" var="s" rows="1">
<h:outputLabel for="id" value="Service ID " />
<h:outputText id="id" value="#{s.id}" />
<br></br>
<h:outputLabel for="name" value="Service Name" />
<h:outputText id="name" value="#{s.name}" />
<br />
<h:commandLink action="detail">
<f:setPropertyActionListener value="#{s}" target="#{sh.currentService}" />
<h:commandButton value="getService" style="float:right;" />
</h:commandLink>
</p:carousel>
我的导航系统在旋转木马外面也很完美
<h:commandLink action="detail">
<f:setPropertyActionListener value="#{s}" target="#{sh.currentService}" />
<h:commandButton value="getService" style="float:right;" />
</h:commandLink>
上面的代码可以让我的页面导航,我想触发的方法也可以正常工作
您应该避免在h:命令链接
中嵌套h:命令按钮
。
只需通过以下方式使用h: Command dButton
:
<h:commandButton value="getService" action="#{yourBean.yourActionMethod}">
<f:setPropertyActionListener .../>
</h:commandButton>
并在您的后备bean中返回导航目标作为action方法的结果:
public String yourActionMethod() {
// do your stuff here
return "detail";
}
尝试将命令按钮放在p:列中。我遇到了这个问题,这里http://forum.primefaces.org/viewtopic.php?f=3