2
我使用這個插件,在MVC 4,得到一個可編輯的DropDownList:如何在ASP.NET MVC中創建可編輯的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-我沒有看到我傳遞給列表的值,你能以正確的方式引導我嗎?
在此先感謝。