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

AutoCompleteExtender Returns HTML Instead of JSON

UPDATE 3: Code behind for the GetGrowers call: using AjaxControlToolkit; using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.Script.Services; using System.Web.Services; using System.Web.UI; using…
Nick H
  • 217
  • 4
  • 19
0
votes
1 answer

Asp.net Autocomplete Extender Drop Down closing if too many results

I am using an autocomplete extender on my asp.net webpage to fetch data when a user starts typing a last name. Only when it seems there are a ton of results being returned, it never lets the user select an item from the drop down. It searches for a…
user1342164
  • 1,434
  • 13
  • 44
  • 83
0
votes
2 answers

How do I make AutoCompleteExtender render above select controls in IE6

When an AutoCompleteExtender is displayed in IE6 it seems to ignore z-index and renders below any select controls (like dropdownlists) in IE6.
Geir-Tore Lindsve
  • 1,147
  • 1
  • 17
  • 27
0
votes
1 answer

Default Focus on AutoCompleteExtender textbox not working

I am using the AutoCompleteExtender on a webpage I am creating and noticed that after I set the defaultfocus on my form to the textbox that the AutoCompleteExtender is targetting it stopped working. I can click off of the textbox and then reselect…
Sami
  • 11
  • 1
  • 5
0
votes
0 answers

How can I unit test a web service item in ASP.NET web forms?

I am trying to build a simple search with asp:Textbox that will have autocomplete powered by Ajax Toolkit AutoCompleteExtender. After hours of searching I found out that the only way to call the servicemethod that actually works is to create a new…
marto
  • 420
  • 1
  • 4
  • 15
0
votes
1 answer

Validate text if contained in AutoCompleteExtender results

I'm using an AutoCompleteExtender to perform auto-completion when the user type a username. I'm interested in keeping the username and the associated database ID. I have an OnClientItemSelected event which will put the ID of the selected item in an…
Tristan
  • 1,349
  • 2
  • 16
  • 25
0
votes
0 answers

AutoCompleteExtender suddenly stopped working

I have implemented AjaxControlToolkit AutoCompleteExtender in one of my projects and it was working fine. Suddenly one day when I opened the project, AutoCompleteExtender stopped working. All other features of the Toolkit like calendar control are…
0
votes
2 answers

AutoCompleteExtender issues

I'm using an AutoCompleteExtender in ASP.NET/C# to retrieve data from my database, along with the primary key of the field. When a name is chosen, the details (name/pk) are retrieved even before clicking submit, and it then passes these onto a…
Chris
  • 7,415
  • 21
  • 98
  • 190
0
votes
1 answer

HTML Inline Expression for AJAToolKit

I would like to assign dynamic ID to my AutoCompleteExtenders, but i am having problem using the usual inline expressions such as <%=variable%> for anything within the tags These are the tags I tried (found them on the…
Murty
  • 31
  • 5
0
votes
1 answer

How can I bind AutoCompleteExtender to dynamically created control?

The autofill works for the static text box, but not the dynamic one. User needs to be able to add as many rows as necessary, and each text box should pull from the same table. There are too many records in the table to use a simple drop down... Any…
Josawalk
  • 43
  • 5
0
votes
1 answer

Asp.net Ajax Tookit AutoCompleteExtender stops working in update panel after partial postback

I have an update panel with some text entry boxes, a clear button and a save button. Under the boxes I have a repeater that holds database entries. When a user enters data in the textboxes and clicks the Save, a database row is created and the…
j.Thor
  • 11
  • 1
0
votes
1 answer

AutoCompleteExtender ajax in asp.net ,

Hi I am using the AutoCompleteExtender ajax control. I am getting the list of strings in LIST collection. I want to populate only those strings, which user typing as prefix text. how to do this. I am following the example given in ajax toolkit.let…
Red Swan
  • 15,157
  • 43
  • 156
  • 238
0
votes
1 answer

Disable item on the CompletionList of the Autocompleteextender

Is there a way to disable a item on the completion list of the AutoCompleteExtender? I want to disable the selection on the list if a particular row has some text in it like, 'Match Not Found'.
dawsoad
  • 13
  • 4
0
votes
1 answer

AutoCompleteExtender - PageMethod has no data to return

I am making use of the AutoCompleteExtender and need know how to handle the scenario when the PageMethod has no data to return. I am currently making use of 'OnClientPopulating' and 'OnClientPopulated' In the 'OnclientPopulating' I am doing the…
dawsoad
  • 13
  • 4
0
votes
1 answer

How to select multiple items using Autocomplete extender in c#?

In my project I am using autocomplete extender.using this I am selecting only one item.But I want to select multiple items.what I should I do.please help me. below is my code: aspx page:
Anil Kumar
  • 303
  • 1
  • 6
  • 23