admin管理员组文章数量:1344067
I have a form with multiple TinyMCE instance. I created the TextArea controls dynamically using a Repeater control - They all have the same ID,but I gave each one a different class. I assigned each of the TextArea controls a TinyMCE instance using the editor_selector : option in the TinyMCE Init function.
tinyMCE.init({ mode : 'textareas',theme : 'simple',editor_selector : 'upperBlock',directionality : 'rtl'}); tinyMCE.init({ mode : 'textareas',theme : 'simple',editor_selector : 'middleBlock',directionality : 'rtl'});
I want to refer to a specific TinyMCE instance in a JS function and get its content. In the case when each TextArea control has a different id that could by done by using :
tinyMCE.get('IdOfYourTextBoxWithTheTinyMCEContent').getContent()
Is there a way to get ref to a specific TinyMCE instance content by the class assigned to it in the editor_selector option of the TinyMCE Init function ?
Thanks
I have a form with multiple TinyMCE instance. I created the TextArea controls dynamically using a Repeater control - They all have the same ID,but I gave each one a different class. I assigned each of the TextArea controls a TinyMCE instance using the editor_selector : option in the TinyMCE Init function.
tinyMCE.init({ mode : 'textareas',theme : 'simple',editor_selector : 'upperBlock',directionality : 'rtl'}); tinyMCE.init({ mode : 'textareas',theme : 'simple',editor_selector : 'middleBlock',directionality : 'rtl'});
I want to refer to a specific TinyMCE instance in a JS function and get its content. In the case when each TextArea control has a different id that could by done by using :
tinyMCE.get('IdOfYourTextBoxWithTheTinyMCEContent').getContent()
Is there a way to get ref to a specific TinyMCE instance content by the class assigned to it in the editor_selector option of the TinyMCE Init function ?
Thanks
Share Improve this question edited Jan 24, 2011 at 12:07 Axarydax 16.6k22 gold badges95 silver badges154 bronze badges asked Jan 24, 2011 at 12:04 ProgNetProgNet 7251 gold badge10 silver badges20 bronze badges 3- Hi unfortunately no answer yet gave an answer to my question.Is there a syntax an api function to get specific TinyMCE instance content by the class assigned to it. Do you wont me to accept an answer that do not give a solution ??? (By doing so I will mislead other readers) – ProgNet Commented Jan 24, 2011 at 13:16
- no, not specifally this question, but you've got some others going on :) – user57508 Commented Jan 24, 2011 at 15:12
- You are wele to read my questions history and the answers. Only after you do that you can judge if there was a good answer to a question of mine that I left with no appropriate response.If you find one or more please let me know and I will fix it(It is not enough to refer only to the rate check the content) – ProgNet Commented Jan 24, 2011 at 15:32
3 Answers
Reset to default 7This can't be done with native TinyMCE methods. You have to loop for yourself, like e.g. (untested)
for (edId in tinymce.editors) {
if (tinymce.editors[edId].settings.editor_selector == 'upperBlock') {
// editor found - do something
}
}
You are doing it wrong. It is not allowed in HTML to have more elements with the same ID. Give them the same class and diffirent IDs.
If you want to retrieve the editor by class, you have to set this properties first to the editor.
tinymceOptions: {
mode: 'specific_textareas',
editor_selector: "yourClassName"
}
then, your textarea would be like:
<textarea class="yourClassName"></textarea>
and then, you can iterate between all the editors you have like
tinymce.editors.forEach(function(editor) {
if (editor.settings.editor_selector === 'yourClassName') {
// do what you want!
}
});
本文标签: cGet TinyMCE instance by classStack Overflow
版权声明:本文标题:c# - Get TinyMCE instance by class - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743745021a2531596.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论