1
我試圖設置文本AND富(rich):面板的標題中的X(關閉)標籤,但一次只能有一個。rich:面板設置文本和標題中的X(關閉)
實例:
但這個例子具有豐富的運行:popupPanel,我需要在豐富的落實:面板組件。
我嘗試:
<rich:panel>
<f:facet name="header">
<h:outputText value="Text Header here" />
</f:facet>
<f:facet name="controls">
<h:outputLink value="#" onclick="#{rich:component('component')}.hide()return false;">
<h:outputText value="X" />
</h:outputLink>
</f:facet>
</rich:panel>
AND:
<rich:panel>
<f:facet name="header">
<h:outputText value="Text Header here" />
</f:facet>
<f:facet name="controls">
<h:outputLink value="#" onclick="#{rich:component('component')}.hide(); return false;">
X
</h:outputLink>
</f:facet>
</rich:panel>
等人,但都沒有奏效
感謝。
模擬相同的行爲,這不是'富:panel'但['豐富:popupPanel'(http://showcase.richfaces.org/richfaces /component-sample.jsf?demo=popup&skin=blueSky) –
是的,但我需要在豐富的實現這個功能:面板 – vctlzac
好吧,讓我告訴你,'rich:panel'沒有'f:facet name =「controls」 '。你可以做的是把** X **放在標題中,然後將它發送到左側 –