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
2
votes
2 answers

Caching data in autocompleteextender

I would like to know how does autocompleteextender retrieve data using webservice. Does it re-call webservice each time new letter is typed or the webservice is called once on control load, and then the subset is parsed on each letter change using…
mko
  • 6,638
  • 12
  • 67
  • 118
2
votes
1 answer

Ajax requests are aborted when they are sent too fast using the AjaxControlToolkit AutoCompleteExtender

I'm using the sample AutoCompleteExtender on the asp.net ajax site and am running into unwated behavior. First let me just say the sample from the asp.net site is just too dang slow. The 1 second CompletionInterval is too long for my taste. So I…
goku_da_master
  • 4,257
  • 1
  • 41
  • 43
2
votes
1 answer

Display two different values from different columns of same row in autocoompleteextender

I am using autocompleteextender in my asp.net website. It is working fine. I want additional functionality when user types it shows suggestion like below suppose I type P in textbox Result - PNQ , PAR, PBC etc Here evry keyword has fullform in…
SUN
  • 973
  • 14
  • 38
2
votes
2 answers

Asp.net autocomplete Extender not working

I want to make textbox autocomplete with database. I used following code but in output extender shows html codes. It is not even executing code behind functions. Following code I have used which is not working properly. ASPx page <%@ Page…
SUN
  • 973
  • 14
  • 38
2
votes
1 answer

AutoCompleteExtender in EditItemTemplate in DetailsView having issues

I have 2 identical AutoCompleteExtender's - one is in the Insert mode of my DetailsView, which is the default mode, and one is in the Edit mode. There is also another DetailsView, which only shows when a Checkbox is ticked (and the page posts back),…
Chris
  • 7,415
  • 21
  • 98
  • 190
2
votes
1 answer

Reset HiddenField if AutoCompleteExtender returns no results

Hi i need to be able to reset a HiddenField's value if my AutoCompleteExtender returns no results (specifically, if the user searches for something that's not in the list/database). I have this JS code now: function autoCompleteItemSelected(source,…
Chris
  • 7,415
  • 21
  • 98
  • 190
2
votes
6 answers

AutoCompleteExtender not working for WebService hosted on IIS 7

I have a web service file in my project having a web method which is used for AutoCompleteExtender and which works fine when I debug it from VS. But when I publish and host it on IIS, it's not working properly. However, I tested the webservice…
Manish
  • 6,106
  • 19
  • 64
  • 90
2
votes
0 answers

AutoCompleteExtender on TextBox returns the page HTML

I am trying to implement a search textbox with the Ajax Control Toolkit AutoCompleteExtender. The result should be a list of names matching the entered text however what gets displayed is the page source HTML, character by character, creating an…
Writex
  • 43
  • 5
2
votes
6 answers

How can I get my Autocomplete extender to work?

I've tried to the letter to search for mistakes in my code, but i can't myself get that autocomplete extender to work. Help wanted. Here's my code: (excerpt from my aspx page)
marko
2
votes
1 answer

Add Scrollbar in AutoCompleteExtender in ASP.NET 4.5

now I have a question for adding scrollbar in autoCompleteExtender in ASP.NET 4.5. I want to develop textbox with autocomplete System added scrollbar. But, as following code, I can't make scrollbar added autocomplete system my code is…
Ryo
  • 25
  • 1
  • 5
2
votes
3 answers

AutoCompleteExtender positioning menu incorrectly when scrolled

We have an AutoCompleteExtender linked to a TextBox. Both controls are placed inside an UpdatePanel, and the UpdatePanel is displayed as a pop-up dialog using a Javascript library (Ext.BasicDialog). The pop-up is a div on the page, not a separate…
Colin
  • 22,328
  • 17
  • 103
  • 197
2
votes
1 answer

Web service is working but data not shown in textbox

I took a text box and applied auto complete extender to it to create a web service, but when it runs, the application text box is not displaying the result although my web service fetches the result. Here is my HTML code:
2
votes
4 answers

AutoCompleteExtender in ASP.NET additional info

how do I pass additional information to the service method returning the collection of items? I'll attempt to explain what I mean, I have 2 text boxes on a form, I need to fill out names, based of a specific account id in a database. so, I need to…
stephenbayer
  • 12,373
  • 15
  • 63
  • 98
2
votes
1 answer

Autocomplete Extender ajax on pressing enter key

I have created Ajax autocomplete extender on my web page that retrieves the values from the database. When I select one of the options from the autocomplete dropdown list I get the desired result. The problem is: When the user types entire word by…
2
votes
0 answers

While using Autocomplete Extender my Browser hangs Up and message arrives UnRepesonsive Script

I have Around more than 1000 Records in my dataset and when i search using AJAX autocomplete extender my browser hangs up and message is displayed Unresponsive Script(Close/Stop Script) What to do to fetch records without being hanged up.
Saiyam
  • 138
  • 2
  • 11
1
2
3
10 11