0
<richdatatable>
<a4j:commandLink styleClass="addLink"  action="#{depotOpeningStockManageBean.createNewLotShow}"
                             execute="@this" oncomplete="#{rich:component('addPane')}.show()"  value="Create" >

                            </a4j:commandLink></richdatatable>

 <rich:popupPanel id="addPane" resizeable="true"  domElementAttachment="parent">     
             <h:commandLink  value="cancel"  onclick="#{rich:component('addPane')}.hide()" />
             </rich:popupPanel>

richdataGrid と richpanel ではポップアップが表示されるのに、richDatatable では表示されないのはなぜですか?

4

1 に答える 1

0

列の定義を忘れたようです:

<rich:dataTable ... >
    <rich:column ... >
        <a4j:commandLink ... />
    </rich:column>
</rich:dataTable>

そして、テーブルにリストを提供する必要があります。<table>レンダリングのみが必要な場合<h:panelGrid>は、探しているタグです。

于 2012-10-23T13:40:38.507 に答える