I want the AutoComplete to behave like this.
When the user is typing something in the textbox nothing should be happen..
Autocomplete suggestion list should be appear only when the user has finished writing
in the textbox and press the enter key..
Any idea how to do this.. Or where to change the code..
STEP : 1
Change the jquery.ui.autocomplete.js file to accept the enter key by changing the method having signature as following
.bind(“keydown.autocomplete”, function (event)
and change it’s following code
To
STEP : 2
Changing autocomplete binding as
SETP : 3
If you are using it inside the asp.net form control
then include it as well.