基本上,Joomla!当用户加载特定页面时,可以启用或禁用基于参数的编辑器(JCE/TinyMCE)。禁用表示:内容不可编辑,必须设置不透明背景。
在 default.php 中:
<?php
$editor =& JFactory::getEditor();
/*
Parameter Type Default Description
$name string The control name
$html string The contents of the text area
$width string The width of the text area (px or %)
$height string The height of the text area (px or %)
$col int The number of columns for the textarea
$row int The number of rows for the textarea
$buttons boolean true True and the editor buttons will be displayed
$params array array() Associative array of editor parameters
*/
echo $editor->display('emailText', $this->articleFullText, '960', '700', '20', '20', false);
?>
是否可以在 default.php (视图)中设置编辑器设置?(我没有找到任何具体的参数)
我创建了以下启用或禁用编辑器的函数(感谢stackoverflow)
function setEditorEditable(editable) {
if (editable == 1) {
tinymce.get(tinymce.activeEditor.id).getBody().setAttribute('contenteditable', 'true');
J('#' + tinymce.activeEditor.id + '_parent').fadeTo(0, 1);
} else {
tinymce.get(tinymce.activeEditor.id).getBody().setAttribute('contenteditable', 'false');
J('#' + tinymce.activeEditor.id + '_parent').fadeTo(0, 0.5);
}
}
但是,如果我在 jQuery .ready 中调用该函数,则编辑器 DOM obj 为空。
我可以如何以及在代码中的何处设置/更改编辑器设置?
谢谢!