New AutoComplete Controlを実装しようとしています。テキストボックスがあり$("#Code")
ます。テーブルから値が選択されたら、選択した値を次を使用して割り当てます
$("#Code").val(selectedValue);
同じ検証を確認する必要があるため、テキスト ボックスの変更イベントを取得しようとしています$("#Code")
。テキストボックスでキーを押すと同じことが発生しますが、関数を使用して割り当てると変更イベントが発生しません$.val()
。
私は以下を試しました。
Entity="#Code"; //for example
$(Entity).keypress(function (event) {
firing on keypress.. // ok.. No Problem
});
$(Entity).keydown(function (event) {
firing on keydown.. // ok.. No Problem
});
$(Entity).bind('input',function() {
firing on keypress.. // ok.. No Problem
});
$(Entity).change(function (event) {
firing on keypress.. // ok.. No Problem
});
のイベントを検出する方法を教えてくださいval()
。