以下是自定義組件頁面中的代碼。當在Joomla之外時,顯示CKEditor,但在Joomla內,它只顯示默認的textarea。請幫忙! >將CK編輯器集成到自定義Joomla組件中的問題
<fieldset>
<legend>System Text</legend>
<select name="txtid">
<option value="">Change Page</option>
<option value="1">Homepage Steps</option>
</select>
<h2>Setting 1</h2>
<p>
<textarea cols="80" id="editor2" name="editor2" rows="10"><p>This is some <strong>sample text</strong>. You are using <a href="http://ckeditor.com/">CKEditor</a>.</p></textarea>
</p>
<script type="text/javascript">
//<![CDATA[
// Replace the <textarea id="editor"> with an CKEditor
// instance, using default configurations.
CKEDITOR.replace('editor2',
{
extraPlugins : 'uicolor',
uiColor: '#14B8C4',
toolbar :
[
[ 'Bold', 'Italic', '-', 'NumberedList', 'BulletedList', '-', 'Link', 'Unlink' ],
[ 'UIColor' ]
]
});
//]]>
</script>
</fieldset>
>
這沒有奏效。我仍然只收到一個標準的textarea。 – Refiking
是在joomla中激活的插件嗎? – Tarek
是的。 tinymce插件已啓用。 – Refiking