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
1
vote
5 answers

Why does this JS fail when I use a master page? (ASP.NET)

I'm currently working on a project where I need to use a lot of AJAX AutoCompleteExtenders, and they have been working fine- but now I'm tidying up the code and implementing a master page, I'm running into issues. I have this…
Chris
  • 7,415
  • 21
  • 98
  • 190
1
vote
1 answer

Panel DefaultButton not works when Textbox is extended by AJAX Toolkit AutoComplete

I am using ASP.NET Panel to set Default Button for some Controls like TextBox but it seems to not work due to AJAX Control Toolkit's AutoCompleteExtender. Pls help.. ! Code is as below:
1
vote
1 answer

AutoCompleteExtender is firing, webservice is returning results, but these are not being displayed

I have been banging my head against the desk over this one. I have added a AutoCompleteExtender to my webpage, and have implemented the webservice method for it to call. So far, so good. Using Fiddler, I have checked that, when debugging, the…
Barry Roberts
  • 224
  • 1
  • 2
  • 9
1
vote
3 answers

How do you get the AutoCompleteExtender to submit when an item is clicked

I have a textbox and a button on my ASP.net form for executing a search. I have added an autocompleteextender from the AJAX toolkit to show suggestions while the user is typing. This works fine, however what I want to happen is for the Click event…
Martin Brown
  • 24,692
  • 14
  • 77
  • 122
1
vote
9 answers

AJAX Control Toolkit Autocomplete Extender not working

I can't get AJAX CT Autocomplete to work. The problem is when I start writing in textbox nothing happens. The frist problem I had experienced was when I tried to Add AutoComplete page method I got an error: "Cannot create page method…
1
vote
2 answers

Ajax Control Toolkit AutoCompleteExtender stripping zeroes and coming up with phantom values

I am using the AutoCompleteExtender from the Ajax Control Toolkit and it is behaving stragely. My service method is shown here: [System.Web.Services.WebMethod] [System.Web.Script.Services.ScriptMethod] public string[] getEJMaps(string prefixText,…
naspinski
  • 34,020
  • 36
  • 111
  • 167
1
vote
1 answer

AutoCompleteExtender works good but not in the place it should be

I've followed the standard example of in http://www.asp.net/ajax/ajaxcontroltoolkit/samples/autocomplete/autocomplete.aspx which demonstrates using AutoCompleteExtender. Everything works fine but the auto-complete appears with about 20 pixel…
Farshid
  • 5,134
  • 9
  • 59
  • 87
1
vote
1 answer

Asp.net autocompleteextender selection issue with cursor point

I have use autocompleteextender for textbox autocomplete. I have written addition js for suggestion & value selection. Problem is after type ing some letter if I move my cursor from top to bottom then it doesn't select value where cursor is pointed.…
SUN
  • 973
  • 14
  • 38
1
vote
0 answers

Bind AutoCompleteExtender dynamically to textbox of gridview in Asp.Net

I have tried to add autocomplete extender from code behind in grid view row data bound event but it is giving me error of "TargetControlId" of autocomplete extender is not found or duplicate control for autocomplete extender. I add code of .aspx…
Gooooku
  • 46
  • 5
1
vote
1 answer

Asp.net ajax autocomplete not working with AutoCompleteExtender

I want to implement ajax autocomplete functionality in my textbox, I tried like below
Nad
  • 4,605
  • 11
  • 71
  • 160
1
vote
0 answers

AutoCompleteExtender List focus item is out of the viewed range

I have an autocompleteextender in my web application. When the user uses the Up and Down arrows of the keyboard to navigate through the list items, sometimes the item in focus would be outside of the scroll view range. How can I set the listbox to…
user3340627
  • 3,023
  • 6
  • 35
  • 80
1
vote
1 answer

SQL Server procedure to find rows from table that its id starts with a specific number not working

I'm trying to write a SQL Server stored procedure that returns a list of string, then I will use this returned list in AjaxAutoCompleteExtender in my ASP.Net website, so when the user start typing a string (e.g. 60), the procedure should return the…
1
vote
2 answers

i want to pass multiple parameter to ajax autocomplete extender

is it possible something like this TextBox1_AutoCompleteExtender.ServiceMethod = "Getlist(" + TextBox1.Text + "," + TextBox1.Text .Length+ ",size_master,size_id,size_name)"; means I want to pass multiple parameter to service. I saw on internet most…
BR BHARDWAJ
  • 399
  • 2
  • 17
1
vote
0 answers

AutoCompleteExtender works fine on developing machine and it doesn't on pubblication server

Question tells all. I got an AutoCompleteExtender that works as a clock on my pc running under VisualWebDeveloper's debug virtual machine but when I publish files on publication server it doesn't work... This is the code i use in…
Supermac
  • 11
  • 3
1
vote
1 answer

Ajax Autocompleteextender not showing the autocompletelist to choose

i was working ajax auto completeextender witha text box in asp.net and c#.net. i am not able to get list to choose ,i have the appropriate web service method called..can anyone guide me to get the automo complete done.
subash
  • 4,050
  • 14
  • 51
  • 78