我正在繪製兩個textareas,其中包含兩個div,一個用於英語,一個用於法語。我顯示/隱藏基於英文/法文下拉菜單的英文/法文div。tinymce重置textarea大小 - 錯誤以及如何修復它?
當我選擇法語來隱藏英文div並顯示法文div時,法語小寫mce textarea具有最小尺寸。當我拿走展示/隱藏時,textareas都畫得很好。這看起來像一個微小的MSE錯誤。無論如何要解決這個問題?
下面的代碼:
$(function() {
$('textarea').tinymce({
script_url: '/js/tiny_mce/tiny_mce.js',
theme: "advanced"
});
$("#ddlLocales").change(function() {
$(".localizedInput").hide();
//english or french
$("." + $("#ddlLocales option:selected").text()).show();
});
//this is to trigger the change function on load.
$("#ddlLocales").change();
});
<div class="localizedInput english">
<textarea class = "eventInputTextArea"></textarea>
</div>
<div class="localizedInput French">
//this textarea's height and width get wiped out by tinymce only when implementing show/hide
<textarea class = "eventInputTextArea"></textarea>
<div>
//below is the css class that specifies the width and height of textarea
.eventInputTextArea{
width:600px;
height:400px;
}
工作 - 我希望他們儘快修復錯誤。 – Riz 2010-12-20 15:57:11