小さな値のセットにオートコンプリートを使用しています。ユーザーが入力ボックスにフォーカスすると(キーボードまたはマウスを使用)、入力を待つのではなく、「オートコンプリート」ソース値をすぐに表示したいと思います。
フォーカスするとすぐにソース値を表示するにはどうすればよいですか?
ありがとうございました、
$("#cityInput").autocomplete({
minLength: 0, // With not that many cities, require at no characters before showing autocomplete
source: getJson(),
// plug-in to the select event in order to keep KnockOut informed about the
});