2013-07-21 53 views

回答

0

你想要哪個組件是否包含RichTextEditor的內容?

我在此假設您想要使用RichTextEditor組件的內容中我們將outputText顯示出來,可以完成此操作:

<af:richTextEditor id="rte1" label="Enter text" 
        value="#{viewScope.richValue}" 
        autoSubmit="true" /> 
<af:outputText id="ot1" value="${viewScope.richValue}" 
       partialTriggers="rte1" /> 

從上面的代碼在RichTextEditor組件輸入的數據被存儲在richValue變量在viewScope中,然後OutputText刷新自身(由於部分觸發器)以顯示該值。

您不能在RichTextEditor中插入「保存」和「取消」按鈕。但是相反,你可以做這樣的事情:

<af:panelGroupLayout id="pgl1" layout="vertical"> 
    <af:richTextEditor id="rte1" label="Enter text" 
         value="#{viewScope.richValue}" 
         autoSubmit="true" /> 
    <af:panelGroupLayout id="pgl2" layout="horizontal"> 
    <af:commandButton text="Save" /> 
    <af:commandButton text="Cancel" /> 
    </af:panelGroupLayout> 
</af:panelGroupLayout> 
+0

感謝您的回覆 – Mehnas

+0

如果您的問題得到解答,請選擇相應的答案,並且可能也是一個好消息! – MohamedSanaulla

+0

嗨,你知道如何將編輯的文本從富文本編輯器(例如:給顏色,字體更改等)保存到數據庫和文本字段??可以保存在數據庫中 – Mehnas

0

您可以從一個字段來保存數據通過引用相同的內存在兩種情況下範圍的變量,就像這樣:

#{requestScope.value}

我不知道你這個是什麼意思: 我怎麼可以插入保存和富文本項目取消按鈕

0

你應該使用af:outputFormatted其作爲文檔中提到:

的outputFormatted豆接受它的「價值」屬性 字符串包含了一組非常有限HTML標記輸出格式爲 的結果。

檢查下面的例子:

<af:outputFormatted styleUsage="instruction" 
        value="<b>simple outputFormatted</b>"/> 

現在你從RichTextEditor拿這個值設置在OutputFormatted組件您AF:按鈕的ActionListener。

希望有所幫助。

相關問題