for the first case i was thinking of using a timeout call... should it work?
:: Ricardo Verhaeg :: Bacharelado Ciências da Computação - USP - São Carlos (2005) On Tue, Nov 18, 2008 at 20:07, Ricardo Fontão Verhaeg <[EMAIL PROTECTED]>wrote: > thanks! > I was working (for studies purpouses) on a hand made auto-complete with > prototype, the idea was that if the user types too fast it will launch only > the latest request not all of them. > > Another issue i was having.. is that if I trigger two or more requests that > will work on the same element, but in different functions, I need them to > occur in a certain order.. is that possible? > > :: Ricardo Verhaeg :: > Bacharelado Ciências da Computação - USP - São Carlos (2005) > > > On Tue, Nov 18, 2008 at 14:12, Alex Mcauley < > [EMAIL PROTECTED]> wrote: > >> >> or this method !! ... but be warned if you have other request >> asynchrnously >> in the page then they will start to become synchronous due to this >> But if you dont then this will work too >> Regards >> Alex >> ----- Original Message ----- >> From: "Matt Foster" <[EMAIL PROTECTED]> >> To: "Prototype & script.aculo.us" < >> [email protected]> >> Sent: Tuesday, November 18, 2008 3:26 PM >> Subject: [Proto-Scripty] Re: new AjaxRequest..... >> >> >> > >> > Instead of trying to keep the last reference to the XHR sent, just >> > enforce a singleton style approach, such that the user can't request a >> > refresh of data when a request is already pending. >> > >> > >> > function fireAjax(){ >> > if(Ajax.activeRequestCount == 0) >> > new Ajax.Request(...); >> > } >> > > >> > >> >> >> >> >> > --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Prototype & script.aculo.us" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/prototype-scriptaculous?hl=en -~----------~----~----~----~------~----~------~--~---
