vote up 1 vote down star

Hi!

I have a problem.

I am using AutoCompleteExtender for my textbox. All autocomplete words shows. But i need next behavior: when there is in textbox '*' character, autocomplete words must not be shown.

How can i do this?

flag

1 Answer

vote up 3 vote down

In your ServiceMethod you could check the string for the presence of the wildcard, and not return any results?

[System.Web.Services.WebMethod]
[System.Web.Script.Services.ScriptMethod]
public string[] GetCompletionList(string prefixText, int count) {
  string[] results = null;
  if (string.IndexOf("*") == -1) {
    // Retrieve your autocomplete options here.
    // Create a new string[] and add the options.
  }
  return results
}
link|flag

Your Answer

Get an OpenID
or

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