我需要在向导中实现一个aditional按钮,当用户点击它时,组件将转到下一步而不选择下一个按钮。 只有在这一步中,下一个按钮才会隐藏。
我建议的代码是:
<p:commandLink title="select and go to next step" process="@this"
action="#{controller.selectPerson}" ajax="true"
value="select and go to next step"
oncomplete="PF('wizard').next();">
<f:setPropertyActionListener value="#{person}"
target="#{controller.selectedPerson}"/>
</p:commandLink>
感谢您的帮助