Re: [Rails-spinoffs] Delayed input posting

2006-03-02 Thread Robin Haswell
Yeah that's the one, but I did re-forward this yesterday as well :-) Janko Mivšek wrote: Hi Rob, I'm looking back for your patch. I this a right one? [PATCH] Allow generic autocompleter (Ajax.Watcher) 13feb06 http://threebit.net/mail-archive/rails-spinoffs/msg00215.html Thanks Janko Robin

Re: [Rails-spinoffs] Delayed input posting

2006-03-02 Thread Janko Mivšek
Hi Rob, I'm looking back for your patch. I this a right one? [PATCH] Allow generic autocompleter (Ajax.Watcher) 13feb06 http://threebit.net/mail-archive/rails-spinoffs/msg00215.html Thanks Janko Robin Haswell wrote: What you need is exactly the patch that I posted to this mailling list a mo

Re: [Rails-spinoffs] Delayed input posting

2006-03-01 Thread Robin Haswell
What you need is exactly the patch that I posted to this mailling list a month ago, and got no comments on. I can find you the patch but it won't make a lot of sense to you, I'd ask the dev team to put my patch in to the CVS, then get a copy of it. I'll re-send the patch after this E-mail -Rob

Re: [Rails-spinoffs] Delayed input posting

2006-03-01 Thread Danger Stevens
_javascript_ has a handy function for doing just this: setTimoutAnyplace that you'd normall execute a function:if (things_are_in_order){    run_my_function();}you can just delay that a bit:if (things_are_in_order){    setTimeout("run_my_function()", 1000);}notice that the name of the function you w

[Rails-spinoffs] Delayed input posting

2006-03-01 Thread Janko Mivšek
Dear all, I'd like to post input field a short delay after last key press (similar like a delay in autocomplete field). Is there anything already done somewhere, maybe some kind of a streched-down autocomplete field just for such purpose? If no, have anyone an idea how can I do that (as a not