Click here to Skip to main content
Licence 
First Posted 22 Mar 2006
Views 138,747
Bookmarked 72 times

Type-Ahead suggest textbox server control with Google AJAXSLT

By | 22 Mar 2006 | Article
An ASP.NET type-ahead suggest textbox (Autocomplete) that leveraging on Google AJAXSLT

Sample Image - typeahead.jpg

Introduction

There are quite a number of AJAX libraries/frameworks designed to run on the .NET framework. The typical example would be Microsoft Atlas. As a beginner of AJAX, I'd like to have an in depth understanding of the technologies. Thus, I spent some time to first create something much more simplified which I could also use in my web application projects.

In many web applications, we need to place a lookup textbox or combo box (drop down) to enable users to select one of the records in a master table (product, customer, employee, bin locations, and etc.). Sometimes, the master table comprises of thousands of records, and binding all the records to a combo box is rather inefficient and potentially causes slowness in page loading.

I was inspired by Google Suggest and the Gmail email address field that heavily employ AJAX technologies. I also learned that Google offers an open source project, Google AJAXSLT, which is a set of JavaScript's that are intended for XML transformation to HTML at the client side (web browser) using XSLT and XPATH. This initiative is to promote development of more user friendly fat clients as it reduces the load on the servers substantially.

I decided to spend some time to explore the synergy of ASP.NET and AJAXSLT. Hence, I tried to create a type-ahead suggest textbox that'd make asynchronous requests to the server as the user inputs text. The result that closely matches the input string will be returned to the drop down area below the textbox asynchronously.

Background

I created a custom server control which consists of a TextBox and a div object. The "keyUp" event of the Textbox triggers a request to the server, and expects the server to fetch the first 10 records (select the top 10 fields from the table where the field like "keyword%") to the browser in XML form.

At the client-end, which is the web browser, I employ three AJAXSLT functions, "xmlParse()", "xsltProcess()" and "el". "el()" is just a shortcut to "document.getElementById()". However "xmlParse" and "xsltProcess" are designed to parse XML, XSLT, and transform it into HTML.

The HTML output will be injected into the div object which is the drop down area intended for records selection.

The downloadable demo project requires the "Northwind" database of SQL Server to work with, and it uses both the "Products" and the "Customer" tables.

Using the code

The way to use this control is extremely easy.

  1. Copy all the five JavaScript files from the downloadable source file (typeahead_src.zip) into your web folder. There are the "dom.js", "misc.js", "xpath.js", "xslt.js" (from Google AJAXST), and "ws.js" (with reference to this) files, and make a reference in the header of your web page as follows:
    <script src="js/misc.js" type="text/javascript"></script>
    <script src="js/dom.js" type="text/javascript"></script>
    <script src="js/xpath.js" type="text/javascript"></script>
    <script src="js/xslt.js" type="text/javascript"></script>
    <script src="js/ws.js" type="text/javascript"></script>
  2. Add a new server control in the toolbox by selecting "aspnetcs_TypeAhead.dll" in the source file.
  3. Drag and drop the "TypeAhead" control into your web page.
  4. Since I mostly use SQL Server in my web applications, the TypeAhead textbox works only with SQL Server currently. Hence you need SQL Server to be the backend database. There are three essential properties that need to be set up before you can even test it. They are:
    • ConnectionString
    • TableName
    • DataField
    private void Page_Load(object sender, System.EventArgs e)
    { 
      TypeAhead1.ConnectionString="server=localhost;" + 
                 "database=Northwind;integrated security=SSPI";
      TypeAhead1.TableName="Products";
      TypeAhead1.DataField="ProductName";
    }
  5. That is it! You do not need to create another aspx page to respond to the request from the web browser.

Areas of Future Improvement

  1. Support generic data source.
  2. Allow user to use a keyboard (only with mouse, currently) for record selection.
  3. Introduce more intelligent logics to reduce frequency of server requests.
  4. Ability to display more informative results instead of just the selected field in the drop down area.
  5. Fonts of drop down area should be configurable.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here

About the Author

Teng-Yong

Web Developer

Malaysia Malaysia

Member

Visit my personal website to know more about me.
www.rainforestnet.com

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
QuestionType-Ahead Server Control PinmemberGail Sims10:21 6 Jul '08  
AnswerRe: Type-Ahead Server Control PinmemberMember 252446910:18 23 Jul '08  
GeneralRe: Type-Ahead Server Control PinmemberGail Sims3:55 24 Jul '08  
GeneralRe: Type-Ahead Server Control [modified] Pinmemberjimboy3333333337:40 5 Sep '08  
Questionallow the user to use a keyboard PinmemberpradeepKumar522:50 27 Apr '08  
Allow user to use a keyboard (only with mouse, currently) for record selection.
ie the user b able to navigate through the result using up and down arrow keys..
 
Has this functionality been developed .. if yes can you kindly share it with me ...
 
Thanks and regards
GeneralTypeAhead in GridView Pinsussjerry12348:43 22 Dec '07  
GeneralTypeAhead in Gridview PinmemberThanks for all the fish8:39 22 Dec '07  
GeneralUse AJAX Control Toolkit Pinmemberdrookue12:10 15 Nov '07  
Question.Text Property Pinmemberdrookue15:01 23 Oct '07  
AnswerRe: .Text Property Pinmembergauzzastrip9:35 15 Nov '07  
QuestionRe: .Text Property Pinmemberlahiru liyanage23:41 13 Mar '11  
GeneralControl was hidding when use listBox Pinmemberanikepati sunil9:27 8 Aug '07  
Generalgood control Pinmembertanthuc21:56 14 May '07  
QuestionModification for tag list? Pinmemberpatsikes9:44 28 Feb '07  
GeneralFireFox Pinmemberafzaal17:44 22 Feb '07  
QuestionHow to use dataset in this application Pinmemberurs_ashokprabhu4:26 25 Sep '06  
AnswerRe: How to use dataset in this application PinmemberTeng-Yong4:43 25 Sep '06  
GeneralParent Child Textboxes Pinmemberdanmorph15:55 20 Sep '06  
GeneralRe: Parent Child Textboxes PinmemberTeng-Yong16:00 20 Sep '06  
GeneralUnusable PinmemberJan Seda3:46 19 Sep '06  
GeneralRe: Unusable PinmemberTeng-Yong16:02 20 Sep '06  
QuestionI like it but keep getting an error Pinmembera3net_marc6:25 25 Jul '06  
AnswerRe: I like it but keep getting an error PinmemberTeng-Yong14:42 25 Jul '06  
GeneralRe: ConnectionString PinmemberTeng-Yong16:52 7 Jul '06  
GeneralBeautiful work [modified] PinmemberZPharaoh16:59 2 Jun '06  

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.

Permalink | Advertise | Privacy | Mobile
Web03 | 2.5.120529.1 | Last Updated 22 Mar 2006
Article Copyright 2006 by Teng-Yong
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid