2011-06-06 30 views
1

我正在使用以下rich:editor控件創建新消息。我在格式下拉列表中選擇標題1,然後輸入一些文本並保留條目。但是當我嘗試編輯消息時,它在加載時出現以下錯誤。我應該如何解決這個問題?在將接縫文本轉換爲html時發生錯誤

錯誤轉換縫文本的過程中出現的HTML

 <s:decorate template="/layout/edit.xhtml"> 
      <ui:define name="label">Message</ui:define> 
       <rich:editor required="true" id="messageField" theme="advanced" useSeamText="true" viewMode="visual" autoResize="true" value="#{newsHome.instance.message}"> 
        <f:param name="theme_advanced_buttons1" value="newdocument,separator,cut,copy,paste,separator,bold,italic,underline,strikethrough,separator,justifyleft,justifycenter,justifyright,justifyfull,separator,hr,removeformat,visualaid,separator,sub,sup"/> 
        <f:param name="theme_advanced_buttons2" value="bullist,numlist,separator,outdent,indent,blockquote,separator,undo,redo,separator,link,unlink,anchor,separator,image,cleanup,help,code,separator,forecolor,backcolor"/> 
        <f:param name="theme_advanced_buttons3" value="fontselect,fontsizeselect,formatselect,styleselect,separator,charmap"/> 
        <f:param name="theme_advanced_resizing" value="true"/> 
        <f:param name="theme_advanced_toolbar_location" value="top" /> 
        <f:param name="theme_advanced_toolbar_align" value="left" /> 
       </rich:editor> 
     </s:decorate> 

回答

1

這聽起來像我們有豐富的一個問題:如果有人輸入的內容與奇數下劃線的編輯。這是由a bug in RichFaces造成的,我們通過將RichFaces升級到3.3.3來修復它。

+0

謝謝,它可以幫助我。 – diya 2011-08-13 04:05:53