Click here to Skip to main content
15,884,472 members
Articles / Web Development / HTML
Article

AJAX On-the-Fly Lookup Control with Multiple Control Support

Rate me:
Please Sign up or sign in to vote.
3.63/5 (5 votes)
8 Jun 2006CPOL5 min read 69.9K   649   49   10
Using multiple AJAX lookup textbox controls for as-you-type data suggestions.

Sample Image - axLookup.gif

Introduction

This article extends Implementing an Ajax.NET-based Lookup Server Control by firefalcon in order to provider support for multiple controls on the same web page. If you reference this work, you will see that it is a combination of the following technologies and projects:

  1. Ajax.NET - this provides the framework that allows AJAX to be easily implemented on the .NET platform. AJAX is a collection of technologies that allow server-side processing to occur without requiring postback to the client, usually a web browser.
  2. JavaScript control to display lookup results by Julian Robichaux - This code, a derivative of the Google Suggest project, included the ability to do the actual XML-Http lookup. Firefalcon's version strips this away and uses a callback function via Ajax.NET to effect the server-side call. You may also be interested in Google Suggest Dissected by Chris Justus; this project takes the original Google Suggest JavaScript and makes it more readable.
  3. ASP.NET "Ajax Lookup" TextBox user control - this is the control that gets placed on the web page and ties everything together.
  4. Browser Detection (by Harald Hope, Tapio Markula): I've included a separate JavaScript which detects which browser is being used. Though it may seem like overkill for this particular project, I'm anticipating that this control will be used in larger projects for which proper browser detection would be required in any case. Since new browsers are showing up all the time, it would be good to maintain this separately.

In my implementation for allowing multiple controls, the major changes were in the JavaScript. The changes in the ASP.NET control had mostly to do with the JavaScript that it creates on the fly.

Developer Tools

When I first tried to get the server control to work in a basic ASP.NET page, it actually took me a couple of days to get it up and running. During this process, I had to try to understand what was happening so that I could attempt to do some debugging and tracing to find out where I was having the problem. Up until this point, I had always shied away from JavaScript for the simple reason that it was too hard to debug. If you plan to use this code in your own project and you haven't done much JavaScript programming, I suggest you use the following while developing:

  1. Mozilla Firefox browser - there are many add-on extensions that are great for developing web pages.
  2. Venkman JavaScript Debugger - this is about the only JavaScript debugger that's worth using IMHO. It works with Firefox and Netscape.
  3. Firebug - this extension for Firefox detects code errors during execution and allows you to examine the XML-Http requests to and from the server. It does a whole lot more too.

Changes to the original "Ajax Lookup"

  • The JavaScript .js file is no longer specified as a control parameter. This is because we only want to include it once, no matter how many controls we have on the page. This means that you must manually include the appropriate script files somewhere in your web page or user control.
  • Extra parameters were added for convenience, including FontSizeFontWeight, DivWeight, ItemStyleBorderBottom, ItemStylePadding, ItemStyleSpacing. Each parameter gets its own variable per control, so the FontSize variable for the first control would be 0FONT_SIZE; 1FONT_SIZE for the second control, etc. Most parameters have default values; see AjaxLookup.cs for these defaults.
  • Since most of the code was pushed back into the JavaScript file, the only script that is dynamically generated by the control is that for the parameters (such as those specified above) and a call to InitQueryCode, called once per control.
  • IE Bug: At some point during all the modifications, an old IE bug crawled in. This had to do with InitQueryCode being called before the entire page was rendered. To prevent this bug, I had to add a setTimeout call to delay the execution of InitQueryCode. You can find more information on this my searching the Internet for "IE Bug" and "setTimeout".
  • The array returned by the lookup callback procedure must be an array of array pairs. E.g.:
    [ ["Mary", "555-1212"], ["John", "976-1000"], ["Jim", "888-4141"] ]
  • If there are too many results, you can return
    ["!more", "Too many results."]

    as the last item of your array list. When !more is detected, the other string (in this case "Too many results.") will be displayed and will not be selectable as an option.

Limitations

  • Each time the mainLoop function gets called (frequency determined by the setTimeout duration), it iterates through all of the axLookup controls. The more controls on the page, the more you may experience a slight "lockup" before results are returned. This is because the control in which you are currently typing has to wait its turn in the controls queue. This is why I've added a variable that allows you to specify the timeout for each web page. You may have to adjust this number based on the number of controls on the page.
  • The original JavaScript code had an algorithm which dynamically adjusted the setTimeout parameter. I took a look at it and didn't quite understand how it worked so didn't bother to re-implement it. Whether its re-implementation for multiple controls would avoid having to manually set the timeout, I do not know.
  • There's only one place where I've called alternate code based on whether an IE browser is being used or not. I have not really tested the code on multiple browsers and cannot promise full cross-browser compatibility.

Using the code

  1. Install Ajax.NET; make sure you have the ajax.dll wrapper library in your .NET bin directory and the HttpHandler in your web.config:
    XML
    <httpHandlers>
      <add verb="POST,GET" path="ajax/*.ashx" 
             type="Ajax.PageHandlerFactory, Ajax" />
    </httpHandlers>
  2. If you are using the compiled version of axLookup, make sure the axLookup.dll library is in your ./bin directory.
  3. The two JavaScript scripts, browser_detection.js and axLookup.js should be in the root directory of your website, but you can put it anywhere you like
  4. Include these lines at the top of your HTML:
    JavaScript
    <script language="javascript" src="browser_detection.js"></script>
    <script language="javascript" src="axlookup.js"></script>
  5. Add an optional timeout (default is 1000 ms) for calling the main loop:
    JavaScript
    <script language="javascript">
    //<!--
        // Set timeout for axLookup
        axl_timeout = 2000;
    //-->
    </script>
  6. Add one or more controls to your HTML:
    HTML
    <Ajax:AjaxLookup id="someId" Runat="Server" Width="70px"
     ItemStyleSpacing="10px"
     ItemStylePadding="1px 0px 1px 0px"
     ItemStyleBorderBottom="0px"
     DivWidth=""
     FontWeight="bold"
     FontSize="12px"
     BackgroundColor="#EEE"
     DivBorder="2px solid red"
     DivPadding="2px"
     DivFont="Arial"
     HighlightColor="#C30"
     CallBackFunction="Classname.Functionname" />

Note that leaving DivWidth blank will make the box adjust to the correct size based on your text.

History

  • 2006-06-08: Initial posting.

License

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


Written By
Software Developer (Senior)
Canada Canada
Starting with BASIC and Pascal, I quickly realised the need to move on to C and C++. This was back in the early days before Visual C. Since then, I've programmed using C++ in the Windows environment then moved on to Java. At this time the web was becoming a popular platform for more sophisticated applications using database backends so I learned some Oracle along the way. I then spent several years programming on the .NET platform using C# and VB with SQL database backends. Of course, with the advent of Ajax, Javascript supplemented my Web projects too. Today, I develop mobile applications using C, C++, Objective-C and the iOS SDK.

Comments and Discussions

 
Generalinternet explorer cannot open the site : www.egtest.com operation aborted Pin
virendra patel27-Apr-07 21:01
virendra patel27-Apr-07 21:01 
GeneralRe: internet explorer cannot open the site : www.egtest.com operation aborted Pin
hezhicheng28-Apr-07 2:01
hezhicheng28-Apr-07 2:01 
Generalerror facing in axlookup control Pin
virendra patel27-Apr-07 20:54
virendra patel27-Apr-07 20:54 
QuestionError:102, Cannot create an object of type 'System.Object' from its string representation 'Page.GetSearchItems' for the 'callBackFunction' property. Pin
Alessandro20-Jul-06 3:47
Alessandro20-Jul-06 3:47 
AnswerRe: Error:102, Cannot create an object of type 'System.Object' from its string representation 'Page.GetSearchItems' for the 'callBackFunction' property. Pin
hezhicheng20-Jul-06 4:29
hezhicheng20-Jul-06 4:29 
GeneralRe: Error:102, Cannot create an object of type 'System.Object' from its string representation 'Page.GetSearchItems' for the 'callBackFunction' property. Pin
Alessandro20-Jul-06 4:53
Alessandro20-Jul-06 4:53 
AnswerRe: Error:102, Cannot create an object of type 'System.Object' from its string representation 'Page.GetSearchItems' for the 'callBackFunction' property. Pin
hezhicheng20-Jul-06 5:08
hezhicheng20-Jul-06 5:08 
GeneralRe: Error:102, Cannot create an object of type 'System.Object' from its string representation 'Page.GetSearchItems' for the 'callBackFunction' property. Pin
Alessandro20-Jul-06 5:42
Alessandro20-Jul-06 5:42 
GeneralRe: Error:102, Cannot create an object of type 'System.Object' from its string representation 'Page.GetSearchItems' for the 'callBackFunction' property. Pin
hezhicheng20-Jul-06 5:51
hezhicheng20-Jul-06 5:51 
GeneralRe: Error:102, Cannot create an object of type 'System.Object' from its string representation 'Page.GetSearchItems' for the 'callBackFunction' property. Pin
Alessandro20-Jul-06 5:56
Alessandro20-Jul-06 5:56 

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

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