ColdFusion 8: отключение редактирования в Rich Text Editor - PullRequest
0 голосов
/ 29 июня 2011

Есть ли способ сделать расширенный текстовый редактор в ColdFusion только для чтения?Неактивный атрибут не работает ...

1 Ответ

0 голосов
/ 29 августа 2011

Поскольку текстовый редактор ColdFusion основан на инструменте FCKEditor, включите этот javascript на свою страницу, и это отключит редактирование и скроет элементы управления.Это зависит от вас, вы также можете только отключить редактирование.

    function FCKeditor_OnComplete( editorInstance )
{
// Just hiding the toolbar:
editorInstance.EditorWindow.parent.document.getElementById("xExpanded").style.display = "none";
// And hiding the small bar showing when the toolbar is collapsed is this:
editorInstance.EditorWindow.parent.document.getElementById("xCollapsed").style.display = "none";

// when you want to hide the collapse handle do:
editorInstance.EditorWindow.parent.document.getElementById("xCollapseHandle").style.display = "none";
// or hiding the expand handle. This seems to be the same as hiding the object with id 'xCollapsed' mentioned above:
editorInstance.EditorWindow.parent.document.getElementById("xExpandHandle").style.display = "none";

editorInstance.EditorDocument.body.contentEditable='false';
editorInstance.EditorDocument.designMode='off';
}

Вы можете найти ссылку здесь , чтобы найти больше способов сделать это.

...