富豪:编辑遗址html?

时间:2010-04-25 14:40:51

标签: jsf tinymce richfaces

奇怪的行为。我使用具有以下属性的rich:editor :(删除了不相关的数据)

    HtmlEditor editor = new HtmlEditor();
    editor.setValueExpression("value", ve);
    editor.setTheme("advanced");
    editor.setValueExpression("viewMode", viewModeValueExpression);
            panel.getChildren().add(editor);

现在我的问题是每当我加载一个现成的html文本时(在源模式下):

<html lang="en" xml:lang="en">
<head>
<title>Done</title>
</head>
<body style="direction: ltr; font-size: medium; color: #0000FF;">
    <p>When the menu loads, navigate to and open Image Editor.</p>
</body>
</html>

更改为VisualMode然后返回SourceMode,我看到编辑器删除了所有的html数据,现在源模式是这样的:

<p>When the menu loads, navigate to and open Chul Muzal.</p>

任何人都知道为什么会这样?

谢谢!

1 个答案:

答案 0 :(得分:1)

TinyMCE通常只编辑HTML片段(正文标记之间的位)而不是整页。但是,如果加载“fullpage”插件(http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/fullpage),它将编辑整个页面,并提供一个对话框,用于编辑页面标题等属性。

此致

Adrian Sutton
http://tinymce.ephox.com