内部にtinymceを含むjquery UIダイアログボックスがあります。初めてダイアログボックスtinymceを開くと正常に動作しますが、ダイアログボックスを閉じて再度開くと、tinymceエディターが表示されますが、内部に何も入力できません無効になっています。
3 に答える
1
ここで問題はかなり明確に見えます。jQueryダイアログボックスを閉じるときに、tinymceインスタンスを正しくシャットダウンしませんでした。
edtorインスタンスをシャットダウンするには、次を使用します。
tinymce.execCommand('mceRemoveControl',true,'editor_id');
更新: document.ready-関数を使用して、エディターの初期化をそれほど遅らせないようにする必要があります(ドキュメントが1.4秒後に読み込まれる場合、1.6秒を台無しにして、ユーザーを待たせます):
$(document).ready(function() {
g = {};
g.oEditor = new tinymce.Editor (
"notesComments",
{
// General options
mode : "none",
theme : "advanced",
height : 350,
plugins : "style,layer,table,advhr,advimage,advlink,emotions,iespell,inlinepopups,insertdatetime,preview,media,searchreplace,print,contextmenu,paste,directionality,fullscreen,noneditable,visualchars,nonbreaking,xhtmlxtras,template",
// Theme options
theme_advanced_buttons1 : "newdocument,|,bold,italic,underline,strikethrough,|,justifyleft,justifycenter,justifyright,justifyfull",
theme_advanced_buttons2 : "formatselect,fontselect,fontsizeselect",
theme_advanced_buttons3 : "undo,redo,|,sub,sup,|,charmap,iespell,media,advhr,|,print,|,ltr,rtl,|,fullscreen|,nonbreaking,pagebreak,hr",
theme_advanced_buttons4 : "cut,copy,paste,pastetext,pasteword,|,search,replace,|,bullist,numlist,|,outdent,indent,blockquote",
theme_advanced_buttons5 : "link,unlink,image,cleanup,code,|,insertdate,inserttime,preview,|,forecolor,backcolor",
theme_advanced_buttons6 : "tablecontrols,|,removeformat,visualaid",
theme_advanced_toolbar_location : "top",
theme_advanced_toolbar_align : "left",
theme_advanced_statusbar_location : "bottom",
theme_advanced_resizing : false
});
g.oEditor.render();
});
于 2012-04-25T15:12:28.107 に答える
0
関数を遅らせることで問題を解決しました:
setTimeout(function() {
g = {};
g.oEditor = new tinymce.Editor (
"notesComments",
{
// General options
mode : "none",
theme : "advanced",
height : 350,
plugins : "style,layer,table,advhr,advimage,advlink,emotions,iespell,inlinepopups,insertdatetime,preview,media,searchreplace,print,contextmenu,paste,directionality,fullscreen,noneditable,visualchars,nonbreaking,xhtmlxtras,template",
// Theme options
theme_advanced_buttons1 : "newdocument,|,bold,italic,underline,strikethrough,|,justifyleft,justifycenter,justifyright,justifyfull",
theme_advanced_buttons2 : "formatselect,fontselect,fontsizeselect",
theme_advanced_buttons3 : "undo,redo,|,sub,sup,|,charmap,iespell,media,advhr,|,print,|,ltr,rtl,|,fullscreen|,nonbreaking,pagebreak,hr",
theme_advanced_buttons4 : "cut,copy,paste,pastetext,pasteword,|,search,replace,|,bullist,numlist,|,outdent,indent,blockquote",
theme_advanced_buttons5 : "link,unlink,image,cleanup,code,|,insertdate,inserttime,preview,|,forecolor,backcolor",
theme_advanced_buttons6 : "tablecontrols,|,removeformat,visualaid",
theme_advanced_toolbar_location : "top",
theme_advanced_toolbar_align : "left",
theme_advanced_statusbar_location : "bottom",
theme_advanced_resizing : false
});
g.oEditor.render();
}, 3000);
于 2012-04-27T17:08:31.460 に答える