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
1 answer

AutoCompleteExtender in Custom Control

I have a composite user control with dynamically created text boxes. As the text boxes are created and inserted into a placeholder on the ASCX, I'm also dynamically creating a AutoCompleteExtender, targeting the text box just created. Everything…
2
votes
2 answers

Auto Complete Extender for multiline textbox - Facebook style

I have in my application a larger textbox and offer user the possibility to enter text on several rows like this: first piece of text second piece of text and so on... Each row is a distinct piece of data that has a significance. The thing is I…
Crista23
  • 3,203
  • 9
  • 47
  • 60
1
vote
1 answer

ASP.NET Ajax - Autocompleteextender control appears behind other controls

To be specific I have a search form with an autocompleteextender at the top. When you type in a string, it autocompletes with matches in a drop down as expected. The problem is that a couple of SliderExtender controls further down the form are…
KWorrall
  • 420
  • 3
  • 7
  • 16
1
vote
1 answer

AJAX AutoCompleteextender without webservice

As per my knowledge, we can use AJAX AutoCompleteextender via two ways either using 'Webservice' or by defining Service method in 'ASPX or ASCX' file. I just wanted to know that is there any advantage in using webservice for AutoCompleteextender…
Pawan
  • 41
  • 1
  • 3
1
vote
0 answers

How to fill gridview with result from autocompleteextender

Friends, I need to populate a gridview with posssible result coming from database, when I'm typing something in a textbox in my web page. For this purpose I'm using ajaxcontroltoolkit and webservice. In webservice, a method is called when I type in…
1
vote
1 answer

Warning AjaxControlToolkit.AutoCompleteExtender.CompletionListElementID is obsolete: Instead of passing in CompletionListElementID, use the default

I really can not understand this problem. When i publish my asp.net 4.0 website it shows this error. Warning 'AjaxControlToolkit.AutoCompleteExtender.CompletionListElementID' is obsolete: 'Instead of passing in CompletionListElementID, use the…
1
vote
0 answers

using autocompleteextender without webservice

Is it possible to use autocomplete extender without using webservice.. and also am working with 3tier architechture..i could retrieve one column but i could not return the string separately..
1
vote
4 answers

Can I use the AJAX Autocomplete extender *without* a webservice?

Using ASP.NET 3.5 with VB codebehind. I don't want to use a webservice to populate an autocomplete extender on a textbox. In this case, it's where the user is entering email addresses and I don't want to make a trip to the database every single…
David
  • 892
  • 4
  • 16
  • 41
1
vote
1 answer

Customizing an AJAX AutoCompleteExtender with a checkbox

I wanted to implement a multi-select AutoCompleteExtender that displays a checkbox on each row. I found some examples that implement checkboxes in dropdown lists, but nothing involving the AutoCompleteExtender. Any ideas? Thanks.
aliensurfer
  • 1,600
  • 3
  • 17
  • 38
1
vote
2 answers

AJAX AutocompleteExtender isn't working. Web Service works

This is c# .net 2.0. I am using a masterpage. The WebService works fine on its own. I am completely stumped. When I type in the TextBox, nothing happens. Files: EditTicket.aspx AutoComplete.asmx App_Code/AutoComplete.cs EditTicket.aspx: …
1
vote
3 answers

ASP.net AJAX Control Toolkit will not recognise my specified css classes in the autocomlete extender?

I am trying to specify CSS classes for the autocomplete control: CompletionListCssClass="completionListElement" CompletionListItemCssClass="listItem" CompletionListHighlightedItemCssClass="highlightedListItem" When I try this, it returns this…
1
vote
0 answers

AutoCompleteExtender seems to stop functioning after losing focus

I love the AutoCompleteExtender and have used it before with great success. My new boss noticed something he doesn't like though, and unless I can get it figured out, he is going to have me scrap it for something else - yikes! Here's the scenario…
1
vote
1 answer

AutoCompleteExtender help needed

I am sure this is a simple solution, but I am at my end.. I have the following ASPX
larryr
  • 1,536
  • 3
  • 17
  • 27
1
vote
1 answer

Autocompleteexender is not working

I have this service for autocomplete extender that works for 'h' for prefixText and 3 for count and returns 'hi' and 'hello' in an array: [System.Web.Services.WebMethod] [System.Web.Script.Services.ScriptMethod] public string[]…
mz1378
  • 1,957
  • 4
  • 20
  • 40
1
vote
1 answer

UpdatePanel + AutoCompleteExtender + jQuery = Problems!

I've got an ASP.NET web form which uses UpdatePanels to allow partial page postbacks. Within one of my UpdatePanels, I'm using the AutoCompleteExtender from the AjaxControlToolkit to call a WebMethod on my page to asynchronously retrieve a list of…
PongGod
  • 829
  • 1
  • 11
  • 19
1 2
3
10 11