Re: Google Suggest-like functionality with CF

2005-03-21 Thread Matt Woodward
It looks like this does most of the Javascript side of things for you - I haven't looked at it beyond playing with the demos, but it seems pretty slick. http://fnjordy.cus.org.uk/auto/ Couple of other URLs to check out: http://serversideguy.blogspot.com/2004/12/google-suggest-dissected.html

Google Suggest-like functionality with CF

2005-03-20 Thread Pete Ruckelshaus
Anyone done anything like Google Suggest on CF? Care to share any tricks or tips? Thanks Pete ~| Logware (www.logware.us): a new and convenient web-based time tracking application. Start tracking and documenting hours spent

Re: Google Suggest-like functionality with CF

2005-03-20 Thread Tony Weeg
pete. straight cf, really doesnt work that way. cf is server side, and that would require some sort of client side scripting. you can do it with flash, javascript and im not sure if there are any other ways... besides a pure java applet? anyway, there has been a lot of discussion about AJAX

Re: Google Suggest-like functionality with CF

2005-03-20 Thread Jon Austin
See recent threads about AJAX :) Regards, Jon On Sun, 20 Mar 2005 21:42:26 -0500, Pete Ruckelshaus [EMAIL PROTECTED] wrote: Anyone done anything like Google Suggest on CF? Care to share any tricks or tips? ~| Logware

Re: Google Suggest-like functionality with CF

2005-03-20 Thread Barney Boisvert
Yeah, it's not particularly complex. There's two distinct parts you have to consider: 1) the UI, and 2) the server interaction. The latter is quite simple. Check out Neuromancer (hit google). It's an abstraction layer for doing asynchronous HTTP requests from javascript. Basically two lines

RE: Google Suggest-like functionality with CF

2005-03-20 Thread Mike Nicholls
p.m. To: CF-Talk Subject: Re: Google Suggest-like functionality with CF Yeah, it's not particularly complex. There's two distinct parts you have to consider: 1) the UI, and 2) the server interaction. The latter is quite simple. Check out Neuromancer (hit google). It's an abstraction layer