MVC 4 でこのプラグインを使用して、編集可能な DropDownList を取得しています。
http://coffeescripter.com/code/editable-select/
私がしたことは次のとおりです
。1-スクリプトフォルダーの下にスクリプトを含めます。
2- css ファイルの最後の部分に css 部分を追加します。
3- 画像をコンテンツ フォルダに追加します。
5-関数を部分ビューに追加します。
関数:
$(function () {
$('#lugar').editableselect(
{
bg_iframe: true,
onselect: function (list_item) {
alert('list item text: ' + list_item.text());
// 'this' is a reference to the instance of editableselect
// object, so you have full access to everything there
alert('input value: ' + this.text.val());
},
case_sensitive: false, // if set to true, the user has to type in an exact
// match for the item to get highlighted
items_then_scroll: 10 // if there are more than 10 items, display a scrollbar
}
);
var select = $('#lugar:first');
var instances = select.editableselectinstances();
instances[5].addoption('germany, value added programmatically');
});
6- クラスをフィールドに追加します。
<div class="editor-field editableSelect">
@Html.EditorFor(model => model.Lugar)
@Html.ValidationMessageFor(model => model.Lugar)
</div>
問題
1 - リスト (画像なし) を取得していますが、値が間違っています。それらの値をどこから取得しているのかわかりません。
2- 必要な値をリストに渡す場所がわかりません。正しい方法で教えてもらえますか?
前もって感謝します。