2

CMS ページで tinymce を使用しており、検証 (jquery) が必要な問題に直面しています。すべてうまくいきますが、エディターを使用して日付 {DATE d/m/Y} のみを挿入すると。jquery の検証はオフになりません。

つまり、日付だけが存在する場合、その検証がうまく機能する前または後に空白を与えると問題が発生します。しかし、Date{DATE d/m/Y} しかない場合に検証が機能しないのはなぜですか??

これを解決するにはどうすればよいですか?

tinyMCE.init({
                theme : "advanced",
                theme_advanced_toolbar_align : "left",
                height : "400px",
                mode: "exact",
                elements : "description",
                plugins : "autolink,lists,spellchecker,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,ibrowser",
                setup : function(ed){

                ed.onKeyUp.add(function (ed, event) {
                        tinymce.triggerSave();
                        $("#EditView#description").trigger({type: 'keyup', ctrlKey: event.ctrlKey, altKey: event.altKey, which: event.keyCode, event:eventObject });
                });
            },

                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,ibrowser",
                theme_advanced_buttons4 : "insertlayer,moveforward,movebackward,absolute,|,styleprops,spellchecker,|,cite,abbr,acronym,del,ins,attribs,|,visualchars,nonbreaking,template,blockquote,pagebreak,|,insertfile,insertimage", 
                theme_advanced_toolbar_location : "top",
                width: "100%",
                inline_styles : true,
                directionality : "ltr",
                entity_encoding: 'raw',
                cleanup_on_startup : true,
                strict_loading_mode : true,
                convert_urls : false,
                remove_redundant_brs : true,
                plugin_insertdate_dateFormat : '{DATE '+df+'}',
                content_css :cssurl+"/includes/style/style.css",
        });
4

1 に答える 1