p:commandLink
带有 id 的 scl1
并且cl2
不触发动作。Tomcat 控制台上没有任何内容,Firebug 控制台上没有任何内容。
在这种情况下我应该在哪里寻找问题,我认为我在两个控制台中都非常绝望,没有任何错误或异常。
<ui:composition xmlns="http://www.w3.org/1999/xhtml"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:f="http://java.sun.com/jsf/core"
xmlns:ui="http://java.sun.com/jsf/facelets"
xmlns:c="http://java.sun.com/jsp/jstl/core"
xmlns:o="http://openfaces.org/"
xmlns:p="http://primefaces.org/ui">
<h:form>
<ui:repeat var="sharing" value="#{sharingController.myList}">
<ui:repeat var="sharingComment" value="#{sharing.subCommentList}">
<p:commandLink id="cl1" value="" process="@this" action="#{reportController.reportSharingComment(sharingComment)}" style="float:right;" id="sharingComment_alert" styleClass="icon_alert" title="#{msg['label.report']}" update=":messages" >
</p:commandLink>
<p:commandLink value="" id="cl2" process="@this" action="#{sharingController.deleteComment(sharingComment)}" style="float:right;" id="sharingComment_delete" styleClass="icon_delete" title="#{msg['label.delete']}" update="@form :messages">
</p:commandLink>
</ui:repeat>
</ui:repeat>
</h:form>
</ui:composition>
我尝试使用嵌套ui:repeat
在 post 构造中的具体列表,然后触发了 commandlinks,但我必须遍历字段列表,如myList
. 我正在加载两者myList
,并且对于每次共享,我都将其加载到subCommentlist
for in post 构造中,但我仍然无法使commandLink
s 着火。