我在primefaces向导里面的手风琴里面有命令链接,它们都是相同的形式 - 我没有嵌套的表格,但是没有触发命令链接的动作。 这是我的页面:
<ui:define name="content">
<h:form id="createSubject">
<p:wizard flowListener="#{createWizard.flowListener}" widgetVar="wiz" showNavBar="false">
<p:tab id="personal" title="#{createWizard.tab1Title}">
....
</p:tab>
<p:tab id="conclusion" title="#{createWizard.tab2Title}">
<p:panel header="#{createWizard.panel2Title}">
<p:accordionPanel value="#{createWizard.similarSubjects}" var="subject">
<p:tab title="#{subject.VPrenom} #{subject.VNom}">
<h:panelGrid columns="2" cellpadding="5">
<h:outputText value="#{createWizard.firstName}: " />
<h:outputText value="#{subject.VPrenom}" />
<h:commandLink value="#{createWizard.completeSheet}" actionListener="#{createWizard.completeSubjectSheet(subject.VIdPool)}"/>
</h:panelGrid>
</p:tab>
</p:accordionPanel>
</p:panel>
</p:tab>
</p:wizard>
<p:commandButton value="#{createWizard.nextButtonTitle}" onclick="wiz.next()" style="float:right;"/>
</h:form>
</ui:define>
和我的支持bean方法:
public void completeSubjectSheet(String subId){
mk.sdc.helpers.Link link = mk.sdc.helpers.Link.getLink();
try {
FacesContext.getCurrentInstance().getExternalContext().redirect(link.mkLink("/POOL/view.jsp?V_ID_POOL="+subId));
} catch (IOException ex) {
Logger.getLogger(CreateWizard.class.getName()).log(Level.SEVERE, null, ex);
}
}
有什么想法吗?感谢。
答案 0 :(得分:1)
因为actionListener不能接受任何参数,所以必须使用commandLink的action属性。
修改强>
您可以使用h:link
或h:outputLink
吗?比如
<h:link outcome="/POOL/view.jsp?V_ID_POOL=#{subject.id}" />