oracle adf - 如何在和 <af:Table 的列标题中包含链接>



我有一个表,其中一列包含一个文本,后面跟着一个go-link。我可以显示文本和链接。但是当我点击链接时,链接的页面没有打开,而是表正在排序。这是我的代码。请帮帮我。

<af:column sortProperty="#{bindings.findPartsResultList.hints.eosDate.name}"
           sortable="true"
           headerText="" 
           binding="#{pageFlowScope.RequestPartMBean.colEndOfHW}"
           id="c6" 
           headerNoWrap="true" 
           noWrap="true" 
           width="180px !important" >
     <f:facet name="header">
        <af:panelGroupLayout layout="horizontal">
              <af:outputText inlineStyle="font-family:Tahoma,Verdana,Helvetica,sans-   serif;font-weight: bold;font-size:12px;color:#333333;display:block;width:108px" value="End of HW Support" noWrap="true"/>
               <af:goLink styleClass="support-css-color-blue2" text="[?]" targetFrame="_blank" destination=""/>
        </af:panelGroupLayout>
     </f:facet>
</af:column>
<af:goLink styleClass="support-css-color-blue2" text="[?]" targetFrame="_blank" destination=""/>

您这里没有提到目的地是destination=""吗?

查看go-link -

更多信息http://jdevadf.oracle.com/adf-richclient-demo/docs/tagdoc/af_goLink.html

最新更新