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

Ajax autocomple extender from a database

I want to create a textbox (for entering names) in my aspx application which suggests names of Employees from database. I am pasting my code below. I am using Mysql Default.aspx: <%@ Page Language="C#" AutoEventWireup="true" …
0
votes
1 answer

ASP.NET AJAX AutoComplete not calling code-behind

(Before marking this question as duplicate, I've tried all the other questions, most of them have outdated links and doesn't solve my problem) I'm trying to make a simple autocomplete function but the Code-Behind is never called. …
Lucas
  • 534
  • 1
  • 10
  • 29
0
votes
1 answer

AutoCompleteExtender not working

following is the code i am using and it is not working.
Ankit
  • 6,388
  • 8
  • 54
  • 79
0
votes
1 answer

Autocomplete extender 'extended' across entire data table

I have a request to create an auto complete that will search an data table. Is this achieveable quickly and simply or is it a case of writing a reasonable amount of code? Originally, I have been using a webservice and linq to point at a single…
Ricardo Deano
  • 2,769
  • 8
  • 47
  • 70
0
votes
2 answers

How to use an AutoCompleteExtender from within a user control?

I have created a user control, in which I plan to use every time the user edits certain content and a regular ASPX page where I call the user control. The user cotrol contains a few textbox and an AutoCompleteExtender. Everything works fine except…
0
votes
2 answers

Using ASP.NET AutoCompleteExtender not working with Bootstrap Modal Popup in Chrome and Safari

I have an AutoCompleteExtender inside Bootstrap Modal Popup on a asp.net webpage, and it works beautifully in Mozilla FireFox. But in Chrome and safari AutoCompleteExtender Is Not Working Has anyone else experienced this? Any kind of workaround? I…
0
votes
1 answer

autocompleteextender Null value after setting innerHtml

I have an autocompleteextender which works very fine when i set its innerHtml to text received from the webservice a i can catch the selected value of that text on selectedItem function . but when i set some HTML elements inside innerHtml of the…
MuhanadY
  • 752
  • 1
  • 12
  • 40
0
votes
1 answer

AutoCompleteExtender positioning for Chrome ONLY

AutoCompleteExtender positioning doesn't work in Google Chrome. Works fine in IE though. Please see the image attached. In IE the style is in inline element and nothing appears on element style in google chrome. The Ajax list appears on the top…
0
votes
0 answers

AutoCompleteextender Does not call service

I have looked at multiple examples of fixing this issue, but none of the resolutions i found seemed to work. I even created a simple page to call my service. I have tested the service in the browser directly, it returns data fine. I have placed…
Steve Z
  • 11
  • 1
0
votes
2 answers

asp.net, c# autocomplete extender

1) I have a textbox to enter initial letters of the item and, 2) a search button on click of which a listbox appears showing the matching searches. 3) I want to convert this into autocomplete extender and want to remove the listbox. Following is my…
0
votes
0 answers

How do I stop browser from adding autocomplete=off to asp textbox

I have an ajax auto complete extender, with custom webservices filling a list in a text box on an .aspx page. IE works fine but when using Chrome or Firefox, this text box is having the autocomplete = off attribute appended to it which is exactly…
0
votes
1 answer

Why is the AutoCompleteExtender firing the Page_Load event instead of the service method?

So I'm trying to implement the AutoCompleteExtender tool from the AJAX Control Toolkit. The following is the implementation of the AutoCompleteExtender on my ASPX page:
Rusty Wizard
  • 531
  • 6
  • 20
0
votes
2 answers

Asp.net using AutoCompleteExtender

I want to use AutoCompleteExtender with textbox to auto complete user's entry from mysql database. but the problem when I run the code and enter a litter should call the webservice method but the problem that the service method return nothing here…
Eyla
  • 5,751
  • 20
  • 71
  • 116