0

問題のビデオ: http ://www.youtube.com/watch?v = Y6RZHMQueDc&feature = youtu.be

フォームの送信ボタンを押すと、ajax(非同期false)でデータを送信するonsubmitメソッドを呼び出します。

ajax呼び出しが返されると、tinymcetextareaのコンテンツがエコーバックされます。保存を1回押すと、何も返されません(ただし、呼び出しは成功し、テストエコーが返されます)。もう一度保存を押すと、tinamcetextareaにajaxが戻るための何かが含まれます。

どこかで見逃した設定がありますか?キーストロークごとにテキストエリアを更新する必要がありますか?または、保存時に、textareaが同期的にtextareaにプッシュされ、保存が非同期ではなくそのジョブを実行できるようにしますか?

何か案は?

現在使用している設定は次のとおりです。

tinyMCE.init({
        // General options
        mode : "textareas",
        theme : "advanced",
        plugins : "jbimages,autolink,lists,pagebreak,style,layer,table,save,advhr,advimage,advlink,emotions,iespell,inlinepopups,insertdatetime,preview,media,searchreplace,print,contextmenu,paste,directionality,fullscreen,noneditable,visualchars,nonbreaking,xhtmlxtras,template,wordcount,advlist",
        language : "en",

        // Theme options
        theme_advanced_buttons1 : "save,newdocument,|,bold,italic,underline,strikethrough,|,justifyleft,justifycenter,justifyright,justifyfull,styleselect,formatselect,fontselect,fontsizeselect",
        theme_advanced_buttons2 : "cut,copy,paste,pastetext,pasteword,|,search,replace,|,bullist,numlist,|,outdent,indent,blockquote,|,undo,redo,|,link,unlink,anchor,image,cleanup,help,code,|,insertdate,inserttime,preview,|,forecolor,backcolor",
        theme_advanced_buttons3 : "tablecontrols,|,hr,removeformat,visualaid,|,sub,sup,|,charmap,emotions,iespell,media,advhr,|,print,|,ltr,rtl,|,fullscreen",
        theme_advanced_buttons4 : "insertlayer,moveforward,movebackward,absolute,|,styleprops,|,cite,abbr,acronym,del,ins,attribs,|,visualchars,nonbreaking,template,pagebreak,restoredraft,|,jbimages",
        theme_advanced_toolbar_location : "top",
        theme_advanced_toolbar_align : "left",
        theme_advanced_statusbar_location : "bottom",
        theme_advanced_resizing : true,
        theme_advanced_resize_horizontal : false,

        // This is required for the image paths to display properly
        relative_urls : false,

        // Style formats (OPTIONAL)
        style_formats : [
            {title : 'Bold text', inline : 'b'},
            {title : 'Red text', inline : 'span', styles : {color : '#ff0000'}},
            {title : 'Red header', block : 'h1', styles : {color : '#ff0000'}},
            {title : 'Example 1', inline : 'span', classes : 'example1'},
            {title : 'Example 2', inline : 'span', classes : 'example2'},
            {title : 'Table styles'},
            {title : 'Table row 1', selector : 'tr', classes : 'tablerow1'}
        ]

    });
4

1 に答える 1

1

送信前に tinyMCE.triggerSave(); を呼び出します。

于 2012-06-19T21:56:51.977 に答える