vote up 2 vote down star
1

Hi,

Does anybody know how using AutoCompleteExtender (from AJAX Control Toolkit) prevent user from entering anything not in suggested values?

flag

57% accept rate

2 Answers

vote up 1 vote down

First, check if you would rather use the new AjaxToolKit ComboBox.

If you can't (for example, if you're using .NET Framework 2.0), you can manipulate the AutoComplete to answer your demands but it's a headache and not really what the control was made to.

The checks are supposed to be made inside the javascript, you add an event to catch OnItemSelected. And then create a function:

 function OnItemSelected (sender, e)
 {
 -- validate here
 }

Another option is to require user to choose value from list by manipulating the events: onchange, onclick & onblur. But it takes some time to find just right combination.

To lift your spirits I'll tell you that it is possible (we've done it, but I can't attach our code because of copyright issues).

link|flag
Sorry for changing the topic a little but can ComboBox be configured to load matches from codebehind when next letter is pressed? – Sergej Andrejev Oct 27 at 10:13
I believe it will require some manipulations. asp.net/AJAX/AjaxControlToolkit/… – Faruz Oct 27 at 10:18
vote up 0 vote down

It does not seem that they have implemented this

see Autocomplete extender: limit to list

they say you need to implement it yourself.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.