p:commandLink
当我将标签与标签一起使用时,我遇到了奇怪的问题ui:repeat
!
commandLink 根本不起作用。
这是我的 xhtml 代码:
<h:form>
<ui:repeat varStatus="miteraionno" value="#{bussinessOwnerViewerMB.bOwner.bOBranches}" var="branch" >
<div class="details" >
<ul class="services">
<li>
<p:commandLink actionListener="#{bussinessOwnerViewerMB.testMethod}" styleClass="nav_services" oncomplete="">
<h:outputText value="#{branch.branchName}"/>
</p:commandLink>
</li>
</ul>
</div>
</ui:repeat>
ActionListener 只是测试方法:
public void testMethod(){
System.out.println("BussinessOwnerViewerMB.changeMapListener()");
}
我尝试c:foreach
但它给了我同样的结果!
任何帮助将不胜感激 ..