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

AutoCompleteExtender Hiding in IE but working in Edge

We are using AutoCompleteExtender in our project and when checking in IE we don't see the full list but just first element. However, same site works just fine in Edge/Chrome. I did poking around and found that the list/dropdown is there but its…
Rohit
  • 1,520
  • 2
  • 17
  • 36
0
votes
1 answer

ASP.NET 3.5 AJAX AutoCompleteExtender - How do I get it filling in all controls?

Preamble: I am using ASP.NET 3.5 and AJAXControlToolkit. I am trying to use the AutoCompleteExtender on a control I am writing which is an Address control. The Address control has a bunch of textboxes such as Address1, Address2, City, Zip, and…
AboutDev
  • 1,923
  • 1
  • 23
  • 33
0
votes
1 answer

AutoCompleteExtender not working in Sharepoint 2010

This has been bothering me for a few days now. I'm trying to use the AutoCompleteExtender in a Visual Web Part project for Sharepoint 2010 but when I type in characters nothing happens. At first I thought it was an Ajax issue so I used the…
dserver
  • 39
  • 1
  • 8
0
votes
1 answer

Passing parameters when using AutoCompleteExtender

How to pass parameters to the service method when using the AutoCompleteExtender?
user99
  • 1
  • 1
  • 1
0
votes
1 answer

Ajax Autocomplet unbind on second access throw jquery simplemodal

I'm using jquery simplemodal to open a popup form which include ajax autocomplete inputs, the first time access to the modal this autocompletes works fine, but when i close it and reopen the modal the autocomplete are not longer binded to the…
0
votes
1 answer

Ajax AutoCompleteExtender toolkit ASP.net vb

I would like to seek help in my project. I am having a hard time with AutoCompleteExtender. I have search a lot and followed the codes but it seems to be not working. Here is my output This is my code:
Miguel Intoy
  • 73
  • 11
0
votes
1 answer

ASP.Net AutoCompleteExtender VB WebMethod not firing - why?

Definitely at my wits end here. This should be simple. In a page to create new user accounts, we have a database with a little of allowable users. To streamline getting the Email address of the new user correct, we want to use an AutoComplete…
David
  • 892
  • 4
  • 16
  • 41
0
votes
1 answer

AutoCompleteExtender strange problem

I've faced with a strange problem in ASP.net/SQL Server and really can not find out what is the problem. I have a AutoCompleteExtender that finds out the predicted results from a web service. All the times it was working great with both english and…
Farshid
  • 5,134
  • 9
  • 59
  • 87
0
votes
1 answer

How to show all items on click of autocompleteextender target search textbox?

I am trying to display all the list items on an autocompleteextender in asp.net. I have set the MinimumPrefixLength = 0 as suggested in this question. My problem is that the list doesn't show on first click. Only if I type something and remove it…
0
votes
1 answer

Ajax AutoCompleteExtender textbox not firing text change event in Edge Browser

I am using Ajax AutoCompleteExtender on a textbox(ASP.NET) and I have wired up the text change event. When I type in the textbox system is able to successfully fetch the data from an asmx method but the text change event associated with the auto…
0
votes
0 answers

Autocomplete extender stops working when setting focus to grid view text box

So, I have a gridview containing textboxes wrapped in autocomplete extenders. A button outside of the gridview is clicked to clear and set focus to a specific textbox in the gridview. When the textbox is entered and I key in data the autocomplete…
Keegan
  • 23
  • 4
0
votes
2 answers

AjaxControlToolkit AutoCompleteExtender is not displaying suggestions

I am using AutoCompleteExtender in asp.net to fetch name and designation based on token(empno). The is pulled from database and I could see it in the network tab of Chrome Dev-tools. But it is not rendered as suggestion list. My attempt for the…
0
votes
1 answer

how to dropdown related data in textbox based on a another textbox value

In my Project, There are one or many Address_code are assigned to the particular Customer_Name. I have a one textbox Which hold Customer_Name. When I select particular Customer_Name which is populated using AutoCompleteExtender. Then I want to…
Kalpesh
  • 37
  • 1
  • 6
0
votes
1 answer

Validate AutoCompleteExtender

Hi i need to validate a textbox value in order to accept only values that are in the completion list of the associated autocompleteextender control. I'm using ajaxtoolkit (version 20229) on asp.net 2.0. For now i use the code below to validate the…
Liuc
  • 61
  • 3
0
votes
2 answers

How to click on an AutoCompleteExtender with Watin

For my acceptance testing I'm writing text into the auto complete extender and I need to click on the populated list. In order to populate the list I have to use AppendText instead of TypeText, otherwise the textbox looses focus before the list is…
Rismo
  • 6,487
  • 11
  • 37
  • 33