JQuery UI AutoComplete TextBox from Database using PageMethod in ASP.Net

In this post we’ll see how to user JQuery UI Autocomplete with asp.net pagemethod.

For database, we’ll be using Northwind database.

PageMethod:

[ScriptMethod(ResponseFormat = ResponseFormat.Json)]
[WebMethod] 
public static List GetEmployee(string searchText) {
 using(SqlConnection conn = new SqlConnection()) {
  conn.ConnectionString = ConfigurationManager.ConnectionStrings["NorthwindConnectionString"].ConnectionString;
  using(SqlCommand cmd = new SqlCommand()) {
   cmd.CommandText = "select CustomerID,ContactName from Customers where " + "ContactName like @SearchText + '%'";
   cmd.Parameters.AddWithValue("@SearchText", searchText);
   cmd.Connection = conn;
   List listAutoCompleteHelper = new List();
   conn.Open();
   using(SqlDataReader sdr = cmd.ExecuteReader()) {
    while (sdr.Read()) {
     AutoCompleteHelper objCompleteHelper = new AutoCompleteHelper();
     objCompleteHelper.displayText = Convert.ToString(sdr["ContactName"]);
     objCompleteHelper.displayValue = Convert.ToString(sdr["CustomerID"]);
     listAutoCompleteHelper.Add(objCompleteHelper);
    }
   }
   conn.Close();
   Thread.Sleep(3000);
   return listAutoCompleteHelper;
  }
 }
}

In above code, we’re fetching data from customer table from northwind database based on text entered by user. You may want to have this code in separate (data access) layer and must use stored procedure rather than inline query, I’ve included this code just for demonstration purpose.

Select query will fetch CustomerId and CustomerName based on user input.

You may want to omit Thread.Sleep(3000), here it is used to delay response so that loading image can be displayed in textbox.

Pagemethod returns list of AutocompleteHelper class which is as below:

public class AutoCompleteHelper 
{ public string displayText { get; set; } 
public string displayValue { get; set; } 
}

JavaScript:

$(document).ready(function() {
    $('#').autocomplete({
        source: function(request, response) {
            $.ajax({
                type: "POST",
                url: '',
                data: "{'searchText': '" + request.term + "'}",
                contentType: "application/json; charset=utf-8",
                dataType: "json",
                success: function(dataJson) {
                    var data = dataJson.hasOwnProperty("d") ? dataJson.d : dataJson;
                    response($.map(data, function(item) {
                        return {
                            label: item.displayText,
                            value: item.displayValue
                        }
                    }));
                },
                failure: function(data) {
                    alert(data);
                }
            });
        },
        minLength: 1,
        search: function(e, u) {
            $(this).addClass('ajaxprocessing');
        },
        response: function(event, ui) {
            $(this).removeClass('ajaxprocessing');
        },
        select: function(event, ui) {
            event.preventDefault();
            $('#').val(ui.item.value);
            this.value = ui.item.label;
            return false;
        },
        focus: function(event, ui) {
            event.preventDefault();
            this.value = ui.item.label;
        }
    });
});

We’re using search and response events of Jquery UI to add and remove ajaxprocessing class respectively to show loading image. In the select event, we’re storing value(customer Id) in the hidden field.

In success callback function, we’ve below line:

var data = dataJson.hasOwnProperty("d") ? dataJson.d : dataJson;

Which checks whether response is surrounded by d attribute. (Ajax response contains .d attribute, if you’re using .net 3.5+, but in asp.net 2.0, it simply returns response. For more info, check this post of Dave Ward.)

HTML:

<asp:TextBox ID="txtEmployeeSearch" runat="server">
</asp:TextBox>
<asp:HiddenField ID="hdnEmployeeId" runat="server" />

CSS:

.ajaxprocessing {
     background: url('Content/Images/ajax-loader.gif');
     background-repeat: no-repeat;
     background-position: right;
}

Now run your page, and it should be working as shown in below image:

jQuery UI Autocomplete example

Notes:

  • If your pagemethod is not being hit and your ajax response contains the whole page, then make sure you’ve added necessary configuration entries to make pagemethod work. Please add the settings mentioned here.
  • IE10 may not pass a parameter for Ajax Post, and hence it may throw “Invalid web service call, missing value for parameter” error. To solve the error, you need to add below meta tag in page head:
<meta http-equiv="x-ua-compatible" content="IE=9">

I hope it helps!


Posted

in

by

Comments

3 responses to “JQuery UI AutoComplete TextBox from Database using PageMethod in ASP.Net”

  1. Michele Avatar

    tried about everything… on VS 2005 doesn't work…

  2. Admin Avatar

    This comment has been removed by the author.

  3. Admin Avatar

    Thanks for this Tutorial..!!

Leave a Reply

Your email address will not be published. Required fields are marked *

%d bloggers like this: