question: is there paging in the autocomplete program for AJAX based option queries?
----- Original Message ---- From: "Dan G. Switzer, II" <[EMAIL PROTECTED]> To: jquery-en@googlegroups.com Sent: Tuesday, April 17, 2007 6:55:25 AM Subject: [jQuery] Re: Autocomplete plugin James, >I found the JQuery and Dan's plugin for auto complete mod today and >was just what I was looking for, I have a form where I ask the user to >enter there town or postcode ( ZIP code) and then it will auto >complete the form. My problem that I found using a cold fusion page is >that held a massive array of towns I got a nice error message of "Code >of a method longer than 65535 bytes" this is due to the class file >that is being created is to big. I know that it was not very smart to >try and enter 20,000 towns in to an array but I am not a real coder :- >( what would be the correct way to hold all of this data ? XML ? SQL >(SQL to slow) I saw yellowpage.com.au has a nice auto complete form >for the location part and I guess I am trying to replicate some thing >like that. Are you trying to load your entire zip code database into a local array? If so, you should be using AJAX. The local array function was added to support very small datasets--when you only have maybe a couple dozen of items. If you searching through hundreds or thousands of records, AJAX is the way you want to go. -Dan