2013-07-24 59 views
1

中調用我需要將子組件在primefaces子表腳本(p:columngroup type =「footer」),但標準子表渲染器不提供此類機會。所以我overrided org.primefaces.component.SubTableRenderer增加兒童渲染:p:commandButton動作和f:setpropertyactionlistener不在p:columngroup

public class CustomSubTableRenderer extends SubTableRenderer{ 
@Override 
protected void encodeColumnFooter(FacesContext context, SubTable table, Column column) throws IOException { 
    ResponseWriter writer = context.getResponseWriter(); 

    String style = column.getStyle(); 
    String styleClass = column.getStyleClass(); 
    styleClass = styleClass == null ? DataTable.COLUMN_FOOTER_CLASS : DataTable.COLUMN_FOOTER_CLASS + " " + styleClass; 

    writer.startElement("td", null); 
    writer.writeAttribute("class", styleClass, null); 
    if(column.getRowspan() != 1) writer.writeAttribute("rowspan", column.getRowspan(), null); 
    if(column.getColspan() != 1) writer.writeAttribute("colspan", column.getColspan(), null); 
    if(style != null) writer.writeAttribute("style", style, null); 

    //encode children 
    for(UIComponent footerColumnChild : column.getChildren()) { 
     if(footerColumnChild.isRendered()) { 
      footerColumnChild.encodeAll(context); 
     } 
    } 

    UIComponent facet = column.getFacet("footer"); 
    String text = column.getFooterText(); 
    if(facet != null) { 
     facet.encodeAll(context); 
    } else if(text != null) { 
     writer.write(text); 
    } 

    writer.endElement("td"); 
} 

}

當我把P中的一些子組件:欄目組,如:

<p:dataTable> 
      <p:subTable> 
       <p:column>..</p:column> 
       <p:columnGroup type="footer"> <p:row> <p:column colspan="3"> 
        <p:commandButton id="button" 
            action="#{myBean.someAction}" 
            oncomplete="jQuery('#select').modal('show');return false;" 
            value="#{val.add}" alt="#{val.add}" 
            title="#{val.add}"> </p:commandButton> 
        <f:setPropertyActionListener value="#{otherBean.id}" 
               target="#{anotherBean.selectedBackId}" /></p:column> </p:row> 
       </p:columnGroup> </p:subTable> 
     </p:dataTable> 

按鈕渲染和onClick事件調用正常,但是按鈕的操作和f:setPropertyActionListener都不會調用。如何使他們工作?

如果我改變號碼:columnGroup型=「頁腳」建設,號碼:列標籤比按鈕動作和f:setPropertyActionListener都做工精細

回答

0

PrimeFaces有一個錯誤,其中commandButton或commandLink不會觸發動作偵聽器,如果它位於標題中(source - 請參閱第二個缺陷)。我有一個預感,你在頁腳中遇到了同樣的問題。

這是在最近的版本中修復的,但尚未公開。如果您想使用PrimeFaces按鈕(而不是標準的HTML按鈕),則必須購買PrimeFaces Elite訂閱或從頭開始編譯源代碼。

1

我的事情,你可以把setPropertyActionListener命令按鈕裏面是這樣的:

<p:commandButton ...> 
<f:setPropertyActionListener value="#{otherBean.id}" target="#{anotherBean.selectedBackId}"/> 
</p:commandButton> 
相關問題