1
イムイムこのJavaScriptコードこのオンその内容を渡すためにYUIのエディタを取得する方法
var myEditor = new YAHOO.widget.Editor('Body', {
height: '300px',
width: '522px',
dompath: true, //Turns on the bar at the bottom
animate: true //Animates the opening, closing and moving of Editor windows
});
myEditor.render();
``
を使用して、ASP MVCサイト上YUIリッチテキストエディタを使用しようとしていますテキストエリア
<div class="yui-skin-sam">
@Html.TextAreaFor(model => model.Body, new { cols = "50", rows = 10 })
@Html.ValidationMessageFor(model => model.Body)
</div>
エディタはロードされますが、フォームを送信するとその内容は渡されません。その中に何もなかったら私がするべきことが必要だと言っている蓋のメッセージ。
どのように私は私が望むようにこれを得ることができるか知っていますか?
また、私はテキストソースの名前とIDを実際に見ています – Roge