我有一个JSP 2.0 <ui:component>
,其中有一个<p:dataTable>
,其列使用Composite来呈现关于某些内容的特殊边框。现在我需要识别位于内容中的ajax呈现属性中的<p:dataTabe>
。
<ui:component>
<p:dataTable id="dataTable" var="userItem" ... />
<p:column>
<my:borderBox id="borderBox">
<p:commandButton
action="#{userController.doDelete(userItem.id)}"
value="delete"
update="?????"/> <!-- How to address the dateTable? -->
</my:borderBox>
</p:column>
</p:dataTable>
<ui:component>
My BorderBox:
<html xmlns:composite="http://java.sun.com/jsf/composite" ...>
<composite:interface>
<composite:attribute name="styleClass" default="" type="java.lang.String"/>
</composite:interface>
<composite:implementation>
<h:panelGroup ...>
...
<composite:insertChildren/>
</h:panelGroup>
</composite:implementation>
我的想法是使用像
这样的东西 update=":#{component.namingContainer.parent.namingContainer.clientId}:dateTable
但component.namingContainer.parent
接缝为空。
当我用这些陈述替换<p:commandButton>
时:
Parent ClientId 1: #{component}
Parent ClientId 2: #{component.namingContainer}
Parent ClientId 3: #{component.namingContainer.clientId}
Parent ClientId 4: #{component.namingContainer.parent}
Parent ClientId 5: #{component.namingContainer.parent.namingContainer}
我得到了这个输出:
Parent ClientId 1: javax.faces.component.html.HtmlPanelGroup@3d957419
Parent ClientId 2: javax.faces.component.UINamingContainer@23db9e8f
Parent ClientId 3: main_form:profilTabView:dataTable:0:borderBox
Parent ClientId 4:
Parent ClientId 5:
我不知道它有什么问题:mybey我的想法是确定列表是完全错误还是有错误或有更好的方法? (但我不能使用修复绝对标识符作为dateTable!)
版本:Primeface 3.2,Glassfish 3.1.2上的Mojarra 2.1.6
答案 0 :(得分:1)
我有解决此问题的方法。如果找不到其他解决方案,可以将其作为替代方案。解决方案是jsf和javascript之间的混合。对于您的表,您可以定义一个小部件(例如“myTable”)。
<p:dataTable id="dataTable" var="userItem" ... widgetVar="myTable"/>
这是一个名为“myTable”的全局javascript变量。此小部件对象包含一个id。对于命令按钮(h:commandButton not p:commandButton),您可以定义onklick事件:
<h:commandButton id="deleteItem" action="#{userController.doDelete(userItem.id)}"
value="delete" onclick="PrimeFaces.ab({formId:$(this).closest('form').attr('id'),source:this.id,process:'@all',update:myTable.id});return false;" />
formId - 您明确输入表单ID或使用我的Jquery函数
update - myTable.id是一个表ID(正好是div包装器)
过程 - @all,@ this,@ form等。