Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8137163
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 6, 20262026-06-06T11:00:40+00:00 2026-06-06T11:00:40+00:00

I am using ASP.NET MVC3 with EF Code First. I have not worked previously

  • 0

I am using ASP.NET MVC3 with EF Code First. I have not worked previously with jQuery. I would like to add autocomplete capability to a dropdownlist that is bound to my model. The dropdownlist stores the ID, and displays the value.

So, how do I wire up the jQuery UI auto complete widget to display the value as the user is typing but store the ID?

I will need multiple auto complete dropdowns in one view too.

I saw this plugin: http://harvesthq.github.com/chosen/ but I am not sure I want to add more “stuff” to my project. Is there a way to do this with jQuery UI?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-06T11:00:44+00:00Added an answer on June 6, 2026 at 11:00 am

    This is what I did FWIW.

    $(document).ready(function () {
        $('#CustomerByName').autocomplete(
        {
            source: function (request, response) {
                $.ajax(
                {
                    url: "/Cases/FindByName", type: "GET", dataType: "json",
                    data: { searchText: request.term, maxResults: 10 },
                    contentType: "application/json; charset=utf-8",
                    success: function (data) {
                        response($.map(data, function (item) {
                            return {
                                label: item.CustomerName,
                                value: item.CustomerName,
                                id: item.CustomerID
                            }
                        })
                        );
                    },
    
                });
            },
            select: function (event, ui) {
                        $('#CustomerID').val(ui.item.id);
                    },
            minLength: 1
        });
    
    });
    

    Works great!

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

i have been using code first technique in ASP.NET MVC3 app. here it is
I am using Entity Framework 4.1 code first and ASP.NET MVC 3. I have
I am using Entity Framework code first and ASP.NET MVC 3. I have the
I'm working with ASP.NET MVC3 using EF and Code First. I'm writing a simple
I am creating an ASP.NET MVC3 application using NHIBERNATE. I have a base class
I am using nhibernate and mvc3 in asp.net I'm trying to add data into
I am using code first approach in a ASP.NET MVC 3 application and all
I am using Entity Framework 4.1 code first and ASP.NET MVC 3 and I
I'm building an ASP.NET MVC 3 site using the code-first Entity Framework 4 approach.
I'm using ASP.NET MVC 3 and Entity Framework 4.1 Code First. Let's say I

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.