Questions tagged [autocompleteextender]

The AutoCompleteExtender is part of the AJAX Control Toolkit for ASP.net

The AutoCompleteExtender is part of the AJAX Control Toolkit for ASP.NET

Demo presentation here

AutoComplete is an ASP.NET AJAX extender that can be attached to any TextBox control, and will associate that control with a popup panel to display words that begin with the prefix typed into the TextBox.

164 questions
0
votes
1 answer

textbox detect enter key after tab key selects autocomplete word

I have an asp:TextBox with AutoCompleteExtender attached. This is my code txtSearch.Attributes.Add("OnKeyPress", "ProcessKeyPressed()") function ProcessKeyPressed() { if(event.keyCode == 13) { Search() } } The function…
0
votes
1 answer

Preventing "ENTER" from picking an item from an auto-complete list to close modal popup dialog

I have a setup where I have an ASP.NET 4.0 user control that contains two textboxes, and an OK and a Cancel button. The first textbox has an Ajax Control Toolkit Autocomplete Extender attached to it, to show the matching list of Swiss zipcodes when…
marc_s
  • 732,580
  • 175
  • 1,330
  • 1,459
0
votes
2 answers

Set ContextKey for AutoCompleteExtender inside GridView

I have an AJAX AutoCompleteExtender, in a GridView, as seen below: ...
SNag
  • 17,681
  • 10
  • 54
  • 69
0
votes
1 answer

AJAX Toolkit AutoCompleteExtender with PageMethod: 401 Unauthorized error

I am trying to implement an autocomplete function on a textbox which pulls data from our database using the AutoCompleteExtender from the AJAX Toolkit. The textbox and control are on a user control nested on an aspx page (which has an updatepanel);…
Nicole Castle
  • 410
  • 1
  • 4
  • 15
0
votes
1 answer

Ajax AutoCompleteExtender.. can I pass two strings to my webmethod?

I got it working where I pass a string to my webmethod and it does a nice auto complete box... But now I need to pass two strings to help filter the results. What is the best way to do this?
Simon
0
votes
3 answers

AjaxToolKit AutoComplete Extender is Just Not Working

So I have spent 4 days now researching and trying everything I can find on StackOverflow and other sites. And I just can't get my Ajax AutoCompleteExtender to work. I am using VS 2012 and ASP.NET and C# building for .NET 4.5 Here is my…
TIPS
  • 31
  • 1
  • 4
0
votes
1 answer

AjaxControlToolkit AutoCompleteExtender ... how to fill from linq query?

Go easy... I'm a newbie at this. Ok, I've added the AutoCompleteExtender to my webpage. The user will add search tags to a project, and I want the textbox to autocomplete with tags that already exist in the database. I don't have a "registry" for…
0
votes
2 answers

Autocompleteextender and button event not fire in updatepatel

Here In my code I create one user control. Put two textbox with autocompleteextender and submit button. After access two textbox , submit button Click event not fire. What is wrong in code. Please help me.When I put the updatepanel after that it's…
Saroop Trivedi
  • 2,245
  • 6
  • 31
  • 49
0
votes
2 answers

How to clear the ASP.NET autocompleteextender client side cache

I have an autocomplete extender on my ASP.NET page and have set the "EnableCaching" attribute to "true". Based on some conditions I want to clear the autocomplete extender's cache (I am not referring to the data cache that I am using in my…
Wynand Murray
  • 73
  • 1
  • 1
  • 8
0
votes
2 answers

Stop Multiple Calls to DB from AutoCompleteExtender

I can't seem to find much help on this. I'm using the autocomplete extender in .net to suggest options for search box when user adds keystrokes to search textbox. This works fine, although a new call to the DB is sent every time a key is…
Ben Drury
  • 1,356
  • 2
  • 16
  • 34
0
votes
1 answer

Ajax AutoComplete Scrolling Issue

in ajax web site there is an example about AutoComplete (there is link) and its quite good with slider. And here is the codes:
Rapunzo
  • 966
  • 5
  • 21
  • 42
0
votes
1 answer

Can I use a DataTable for a AutoCompleteExtender from AjaxToolKit

I built a ASP.NET Webapplication and I have a TextBox where a User can find a other User. For this I want use the AutoCompleteExtender from AjaxToolKit. The Data I get from the Active Directory. If I start my Page the Application create a DataTable…
Tarasov
  • 3,625
  • 19
  • 68
  • 128
0
votes
1 answer

Ajax tool kit AutoCompleteExtender and javascript

I have an Ajaxtool kit AutoComplete extender control that targets to a Text box. I am calling a web service and returning the values to bind to the AutoComplete extender and that works great. I am really wondering about how I can retrieve the…
SARAVAN
  • 14,571
  • 16
  • 49
  • 70
0
votes
2 answers

why AutoComplete Extender work very slow ASP.NET

Fixed: Missing Property CompletionInterval="0" I am testing functionalities of ajax autocomplete extender and webservices. And found that auto complete extender take a while to fetch the data and display. I don't have database connection or…
1 2 3
10
11