これに関するこの投稿を読み、jQuery を介して CKEditor にテキストを単純に追加しようとしています。このコードを使用していますが、次のエラーが発生します。
$(document).ready(function(){
CKEDITOR.instances.txtDESCRIPTION.insertText('some text here');
});
---
<%@ Register TagPrefix="CKEditor" Namespace="CKEditor.NET" Assembly="CKEditor.NET" %>
<CKEditor:CKEditorControl id="txtDESCRIPTION" Toolbar="SplendidCRM" Language='<%# Session["USER_SETTINGS/CULTURE"] %>' Height="400" BasePath="~/ckeditor/" FilebrowserUploadUrl="../ckeditor/upload.aspx" FilebrowserBrowseUrl="../Images/Popup.aspx" FilebrowserWindowWidth="640" FilebrowserWindowHeight="480" runat="server" />
キャッチされていない TypeError: 未定義のメソッド 'insertText' を呼び出せません
テキスト「test」をCKEditorに追加するにはどうすればよいですか?
注: これは、jQuery CKEditor バージョンではなく、CKEditor.NET を使用します。