autocompleteextender

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. <asp:TextBox ID="TextBox1" runat="server" /> <cc1:AutoCompleteExtender ID="AutoCompleteExtender1" runat="server" TargetControlID="TextBox1" EnableCaching="true" CompletionSetCount="5" ...

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 populated. Now my problem is when I try to click on the populated list. I've tried search...

AutoCompleteExtender in ASP.NET additional info

how do I pass additional information to the service method returning the collection of items? I'll attempt to explain what I mean, I have 2 text boxes on a form, I need to fill out names, based of a specific account id in a database. so, I need to pass an integer to the getNamesForDropDown method. I couldn't figure out what to do, so ...

Forcing TargetControl Textbox to use a value in the AutocompleteExtender

I'm sure I'm going to have to write supporting javascript code to do this. I have an autocomplete extender set up that selects values from a database table, when a selection is made, i would like it to set the ID of the value selected to a hidden control. I can do that by handling a value change on the text box and making a select call...

How can I get my Autocomplete extender to work?

I've tried to the letter to search for mistakes in my code, but i can't myself get that autocomplete extender to work. Help wanted. Here's my code: (excerpt from my aspx page) <asp:TextBox ID="TextBox1" Width="120px" runat="server"></asp:TextBox> <cc1:AutoCompleteExtender ID="AutoCompleteExtender1" runat="server" TargetControlI...

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, int count) { // method that returns the auto-suggest for the EJMaps positions string...

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 dropdowns such as State and Country. Scenario: I would like the user to start typing into ...

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 error: Parser Error Message: Type 'AjaxControlToolkit.AutoCompleteExtender' does not have...

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: <%@ Register Assembly="AjaxControlToolkit" Namespace="AjaxControlToolkit" TagPrefix="cc...

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. ...

Can I have an MVC Action as a ServiceMethod for an AutoCompleteExtender?

Assuming Tools is my Controller, I specify '/Tools' in the ServicePath, and the action name 'GetToolsList' in the ServiceMethod. Can I fire an AutoCompleteExtender this way? How would I be able to pass the prefixText to the Action here? Or is it not possible? ...

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 time. I'd much rather keep a collection in session state and 'bind' the autocomplete to tha...

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 appearing above the autocomplete dropdown (it is not covering these controls). I've looked ...

ASP.Net: Element <name> Is Not A Known Element

I've been trying to use the AutoComplete Extender from the ASP.NET Ajax Control Toolkit, however I've been having tons of trouble getting it to actually work. To install the AjaxControlToolKit, I've placed it inside my application's bin directoy, then I just dragged and dropped the control into the form. However, it keeps saying, "Ele...

Ajax AutoCompleteExtender.. can I pass two strings to my webmethod?

I got it working where I pass a string to my webmethod and it does a nice auto complete box... But now I need to pass two strings to help filter the results. What is the best way to do this? ...

AJAX C# AutoCompleteExtender contextKey

How do you dynamically pass parameter/control to contextKey? <asp:TextBox ID="tbA" runat="server" autocomplete="off"></asp:TextBox> <asp:TextBox ID="tbB" runat="server">hello</asp:TextBox> <asp:TextBox ID="tbC" runat="server">world</asp:TextBox> <cc1:AutoCompleteExtender ID="aceListA" ServiceMethod="listA" ServicePath="WebService.asm...

JavaScript - How do I call a function from a string name and pass an array object?

I've got a user control which lets users provided their own script names that are called by the control on specific events. I have the following code: initialize : function() { // Call the base initialize method Point74.WebAutoComplete.callBaseMethod(this, 'initialize'); $(document).ready( Function.createDelegate(...

autocompleteextender not working on vb.net

hi i have use ajax autocompleteextender on vb.net it is fine work on c# but not working in vb.net so if any solution then sujjest me thanks ...

how to style last element in response list from autocompleteextnder service

I am using autocomplete extender list ( ajax toolkit ). When number of items returned are more than 10 I want to show message as "more.." with red color at the end of list. What is simplest way to style last element of the list returned from service. ...

how to style last element in response list from autocompleteextnder service

am using autocomplete extender list ( ajax toolkit ). When number of items returned are more than 10 I want to show message as "more.." with red color at the end of list. What is simplest way to style last element of the list returned from service. ...