オートコンプリートを正しく機能させるのに問題があります。
それはすべて私には大丈夫に見えますが....
<script>
$(function () {
$("#customer-search").autocomplete({
source: 'Customer/GetCustomerByName',
minLength: 3,
select: function (event, ui) {
$("#customer-search").val(ui.item.label);
$("#selected-customer").val(ui.item.label);
}
});
});
</script>
<div>
<input id="customer-search" />
</div>
@Html.Hidden("selected-customer")
ただし、ドロップダウンからアイテムを選択すると、ラベルではなくテキストボックスに値が適用されます。
私は何を間違えましたか?
firebugを使用してソースを見ると、非表示フィールドが正しく更新されていることがわかります。