Click here to Skip to main content
15,891,431 members
Articles / Programming Languages / C#

Use jQuery Autocomplete to Give User Searching Suggestions Like in Google

Rate me:
Please Sign up or sign in to vote.
4.67/5 (3 votes)
26 Dec 2011CPOL2 min read 23.2K   6  
This article explains the function and the use of Autocomplete.

The original post can be found here.

Introduction/Catalog

Due to limited time, synchronization cannot be guaranteed in more than one blog article. At the following address, you can view up-to-date content, hope you understand:

Download sample: JQueryElementDemo-en.zip, the directory is /autocomplete/Default.aspx.

This article explains the function and the use of Autocomplete, the directory is as follows:

Prepare

Be sure that you have got the latest version of jQueryElement at Download JQueryElement.

Use the following statements to reference the namespace:

ASP.NET
<%@ Register Assembly="zoyobar.shared.panzer.JQueryElement"
 Namespace="zoyobar.shared.panzer.ui.jqueryui"
 TagPrefix="je" %>
<%@ Register Assembly="zoyobar.shared.panzer.JQueryElement"
 Namespace="zoyobar.shared.panzer.web.jqueryui"
 TagPrefix="je" %>

In addition to the namespace, you need to reference the jQueryUI scripts and styles; there is a custom theme for jQueryUI in the compressed file downloaded here. If you need more themes, you can get them at jqueryui.com/download:

XML
<link type="text/css" rel="stylesheet"
 href="[style path]/jquery-ui-<version>.custom.css" />
<script type="text/javascript"
 src="[script path]/jquery-<version>.min.js"></script>
<script type="text/javascript"
 src="[script path]/jquery-ui-<version>.custom.min.js"></script>

Source Property

Source is an important property of Autocomplete, it contains the suggested entries, and can be the following three forms: array, a URL, or a method.

Array

The Source property can be set to a JavaScript array, in the form: ['entry 1', 'entry N'] or [{ label: 'entry 1', value: 'value 1' }, { label: 'entry N', value: 'value N' }]. In the latter form, label indicates that the text of entry, value indicates the text of the text box when an entry is selected:

XML
<je:Autocomplete ID="aA" runat="server"
 Source="['vs 2002','vs 2003','vs 2005','vs 2008','vs 2010']">
</je:Autocomplete>

In the code above, if the user has entered vs 201, it will display vs 2010 as suggested entry.

URL

If the Source property is specified as a URL, that URL should return a JavaScript array which is the same mentioned above:

XML
<je:Autocomplete ID="aA" runat="server"
 Source="'http:// ... /source.js'">
</je:Autocomplete>

In the code above, you need to use single quotes to enclose the URL, otherwise it will generate an error. source.js above might look as follows:

["tom", "tomas", "li", "lili"]

Method

Using a method, we can dynamically display the suggested entries based on user input, but does not need to write this method because it can be done through the SourceAsync property of Autocomplete:

XML
<je:Autocomplete ID="k" runat="server"
 SourceAsync-Url="google_getitem.ashx">
</je:Autocomplete>

In the code, SourceAsync-Url is set to google_getitem.ashx, so when the text of the text box has been changed, autocomplete will visit google_getitem.ashx to obtain the suggested entry; the ProcessRequest method of google_getitem.ashx:

C#
public void ProcessRequest ( HttpContext context )
{
 context.Response.ContentType = "text/javascript";
 context.Response.Cache.SetNoStore ( );

 string term = context.Request["term"];
 List<object> items = new List<object> ( );

 for ( int index = 0; index < term.Length; index++ )
  items.Add ( term + "-" + term.Substring ( 0, index + 1 ) );

 context.Response.Write ( new JavaScriptSerializer ( ).Serialize (
  SampleHelper.CreateJSONArray ( items.ToArray ( ) ) )
  );

 /*
  * [
  * "suggested entry 1", "suggested entry 2"
  * ]
  * 
  * [
  *  { "label": "suggested entry 1", "value": "value 1" },
  *  { "label": "suggested entry 2", "value": "value 2" }
  * ]
  * */
}

In the code, through the Request object gets the parameter term which is passed by autocomplete, and says the text currently entered by the user. According to the term parameter, we can generate suggested entries and return them to the client in a JavaScript array.

If you need to return data in a different .NET version, please refer to Return JSON in Different .NET Version.

Delay Property

Delay property is the delay in milliseconds the Autocomplete waits to trigger the match; the default is 300 milliseconds.

MinLength Property

MinLength property is the minimum number of characters a user has to type before the autocomplete triggers the match.

Other Properties and Events

For other properties and events of autocomplete, you can refer to docs.jquery.com/UI/Autocomplete.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
United States United States
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
-- There are no messages in this forum --