これは、ファイルソースによって指定された同じ配列に入力するコードです。
$("#input-search").autocomplete({
source: function(request, response) {
$.ajax({
url: "SearchList.igx",
data: { name: request.term, maxResults: 10 },
//dataType: "json",
type: "GET",
success: function(data){
response(data);
}
});
},
select: function(event, ui) {
$('#input-search').val(ui.item.value);
},
cache: false,
});
これが、入力されたSearchList.igxです。
[{label:"John Doe", value:"0123"},{label:"Joshua Poe", value:"0124"}]
これは次のようなビューです。
オートコンプリート出力ビューのように、入力された提案テキストとして表示するにはどうすればよいですか?