I'm using this plugin, in MVC 4, to get a Editable DropDownList:
http://coffeescripter.com/code/editable-select/
What I did was:
1- include the scripts, under the scripts folder.
2- Add the css part, in the last part of my css file.
3- Add the image to my content folder.
5- Add the function to my partial view.
Function:
$(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- Add the class to my field.
<div class="editor-field editableSelect">
@Html.EditorFor(model => model.Lugar)
@Html.ValidationMessageFor(model => model.Lugar)
</div>
Problem
1- I'm getting the list (without the image) but with wrong values in it. I don't know where is it getting those values from.
2- I don't see where I pass the values that I want to the list, Could you guide me in the right way?
Thanks in advance.