私の Rails アプリケーションの 1 つで、複数のテキスト領域を持つフォームがあり、すべてのテキスト領域に特定のid
属性値を割り当てましたが、フォームをロードしている間、通常、テキスト領域は非表示になり、値を取得していますTinyMCE get メソッドを使用 (属性を使用id
)。ここで私の問題は、フォームが読み込まれると、 Id 属性の値もデフォルト値に変更されることです。たとえば、
<%= text_area_tag "description",'', :class=>"validate[required,funcCall[checkHELLO]] text-input sub_description", :id=>"sub_question-text", :style=>"width: 426px; height: 117px; border: 1px solid rgb(209, 209, 209); float:left;" %>
上記の指定した text_area のId
値sub_question-text
は ですが、フォームが読み込まれると、
<textarea class="validate[required,funcCall[checkHELLO]] text-input sub_description" id="mce_33" name="description" style="width: 426px; height: 117px; border: 1px solid rgb(209, 209, 209); float: left; display: none;" aria-hidden="true"></textarea>
これで、id
属性の値が になりましたmce_33
。
tinyMCE には次の init メソッドがあります。
tinyMCE.init({
// General options
mode : "textareas",
editor_selector : "sub_description",
width:"350",
theme : "advanced",
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",
// Theme options
theme_advanced_buttons1 : "bold,italic,underline,strikethrough,|,justifyleft,justifycenter,justifyright,justifyfull,|,styleselect,formatselect,fontselect,fontsizeselect",
theme_advanced_buttons2 : "bullist,numlist,|,outdent,indent,blockquote,|,undo,redo,|,insertdate,inserttime,preview,|,forecolor,backcolor,|,hr,removeformat,|,sub,sup,charmap,|,ltr,rtl",
//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,spellchecker,|,cite,abbr,acronym,del,ins,attribs,|,visualchars,nonbreaking,template,blockquote,pagebreak,|,insertfile,insertimage",
theme_advanced_toolbar_location : "top",
theme_advanced_toolbar_align : "left",
theme_advanced_statusbar_location : "bottom",
theme_advanced_resizing : true,
// Skin options
skin : "o2k7",
skin_variant : "silver",
// Example content CSS (should be your site CSS)
content_css : "css/example.css",
// Drop lists for link/image/media/template dialogs
template_external_list_url : "js/template_list.js",
external_link_list_url : "js/link_list.js",
external_image_list_url : "js/image_list.js",
media_external_list_url : "js/media_list.js",
});
何が問題なのかわからない。助けてください。