[google-appengine] Re: Suggests based on user input

2009-01-06 Thread Barry Hunter
You could use something like this http://developer.yahoo.com/yui/autocomplete/ the python script to output csv, or xml based on the datastore query should be fairly trival. 2009/1/6 Shay Ben Dov : > > Hi Everybody, > > Has anyone tried to implement a suggestions based on user input like > inGm

[google-appengine] Re: Suggests based on user input

2009-01-06 Thread bowman.jos...@gmail.com
If it's going to make a request each time it needs to calculate next suggestions, you could quickly hit your requests quota. When doing Ajax style functionality on your appengine site, it's best to keep in mind you have a finite amount of requests available to your application per day. On Jan 6,

[google-appengine] Re: Suggests based on user input

2009-01-09 Thread Adam
I'd suggest pushing the entire list of suggestions to the client when they hit the page, then using something like: http://wiki.github.com/madrobby/scriptaculous/autocompleter-local The list of suggestions could either be static, or stored in the data store. We do this for www.fyood.com which h