0
votes
1answer
23 views

Dropdown Loses Focus As Soon As I Try to Select a Value

So the context is an MVC 4 internet application with razor views. Here is the input field where I want the autocomplete dropdown to appear: <td> <div class="editor-field"> ...
0
votes
1answer
543 views

jquery ui autocomplete values not being displayed in textbox

am working on a JQuery UI Autocomplete widget that connects to a Google Search Appliance I have tested the widget using both Fiddler and Visual Studio 2010 inbuilt testing tools and can verify that ...
0
votes
1answer
214 views

JQuery autocomplete combobox selecting from one repopulates another

I have an ASP.NET web app that is using JQuery autocomplete to build a nice dynamic combobox. One of the boxes on the page fires a change event that reloads another box. Basically like a UserGroup / ...
4
votes
2answers
1k views

How to return a Json label/value pair from C# Controller Action for jQuery AutoComplete

I need to create a jQuery Autocomplete textbox that gets a list of names from the DB, and when selected, sends the user to the appropriate page link. I'm trying to do something just like this post: ...
0
votes
1answer
816 views

Textbox autocomplete not populating from WebMethod returning object

I have a textbox hooked up to jQuery UI Autocomplete widget. The source for the autocomplete is a WebMethod returning a list of 'Person' objects. The user will start typing a persons name and then ...
2
votes
1answer
3k views

jQuery UI autocomplete combobox remote data source

I'm trying to implement the jQuery UI autocomplete combobox so it's reusable in ASP.NET/C#. I've had no issues using it with just the basic autocomplete, but when trying to use the combobox I'm ...
3
votes
4answers
1k views

Autocomplete jquery not working?

I have a text box, Inside I want it to auto complete. The data for the auto complete is going to be given through the database. This is my Jquery: var data = "autocompletetagdata.aspx" ...
3
votes
1answer
1k views

How do I use jquery's UI autocomplete with ASP.NET and an external data source?

I've been trying to put the pieces together on this for a while and am having trouble. The components: ASP.NET web application MS SQL database and tables C# class with get and set for all table ...
2
votes
3answers
2k views

Apostrophe in JQuery Autocomplete Call

The code below works when searching for any name that does not contain an apostrophe. When you attempt to find someone with an apostrophe in their name it fails (returns error). How can I allow to ...
0
votes
1answer
580 views

Get selected item using JQuery AutoComplete

I have the code below working. How do I read and set the item selected to a control on the page (i.e. hidden field). NomineeUserName is a property on the object being returned. Thanks for any help ...
1
vote
1answer
1k views

Using jQuery UI Autocomplete in ASP.NET

I am using jQuery UI Autocomplete with ASP.NET like this : First I am serializing Good names into string array then I passing Array to source of jQuery UI AutoComplete //PageLoad ...