0
ColdFusionでリッチテキストエディタを読み取り専用にする方法はありますか?無効な属性が正常に動作していないようです...ColdFusion 8:リッチテキストエディタ内の編集を無効にする
ColdFusionでリッチテキストエディタを読み取り専用にする方法はありますか?無効な属性が正常に動作していないようです...ColdFusion 8:リッチテキストエディタ内の編集を無効にする
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';
}
さらに詳しい方法は link hereです。