HtmlEditorExtenderを含むテキストボックスがあり、a-hrefをクリックすると、テキストボックスにテキストを追加するjquery関数があります。
この関数は通常のテキストボックスでは正常に機能しますが、HtmlEditorExtenderを備えたテキストボックスでは機能しません。
何か案は?
事前にThnx。
HtmlEditorExtenderを含むテキストボックスがあり、a-hrefをクリックすると、テキストボックスにテキストを追加するjquery関数があります。
この関数は通常のテキストボックスでは正常に機能しますが、HtmlEditorExtenderを備えたテキストボックスでは機能しません。
何か案は?
事前にThnx。
クライアントのコントロールインスタンスにアクセスするには、次のようにDOM要素自体のコントロールプロパティを使用します。
<script type="text/javascript"> //considering the editor is loaded.
var editorControl = $get("<%=editor.ClientID%>").control;
//1. For setting content:
editorContorl.set_content("Sample Content");
//2. For getting content:
var content = editorContorl.get_content();
</script>
気をつけて、M
TextBoxのテキストを次のように設定できました。
document.getElementById('editor_HtmlEditorExtender_ExtenderContentEditable').innerHTML = "asdf";
ここで、editorはTextBoxのIDです。