This thing looks like a bug on firebug. The complete event is fired and the response comes correctly. Just tested this stuff.
-- Fábio Miranda Costa front...@globocore On Sat, Aug 7, 2010 at 2:56 PM, Ryan Florence <[email protected]> wrote: > I use req.check() > > Sent from my iPhone > > On Aug 7, 2010, at 10:52 AM, keif <[email protected]> wrote: > > > Whoa - how the hell did I miss that "request.running"? Has that always > > been available? > > > > On Aug 6, 2:31 pm, Thierry bela nanga <[email protected]> wrote: > >> or you could use request.running > >> > >> var request = new Request({ > >> method: 'get', > >> //... > >> > >> }); > >> > >> //the request is still running > >> if(request.running) { > >> > >> //... > >> > >> > >> > >> > >> > >> } > >> On Sun, Aug 1, 2010 at 11:14 PM, Johnny Fuery <[email protected]> > wrote: > >>> var isLoading = false //semaphore for tracking status of the request > >>> var myFormAction = function(){ > >>> if (!isLoading){ > >>> isLoading = true; > >>> // perform my form action > >>> }}; > >> > >>> ...then set isLoading = false in your onSuccess. > >> > >>> Johnny Fuery > >>> President/Principal Engineer > >>> Fuery Solutions -- makers of MerusCase > >>> 1736 Franklin Street, Suite 350 > >>> Oakland, CA 94612 > >>> 925.997.3878 Direct/Mobile > >>> 925.997.4107 Main > >>> 510-836-0915 Fax > >>> [email protected] > >> > >>> On Sun, Aug 1, 2010 at 3:03 PM, Sid-ahmed D < > [email protected]> > >>> wrote: > >>>> Hi, > >> > >>>> How do you block the action of a function when it is started and > >>>> reactivate when the application is completed? > >> > >>>> http://jsfiddle.net/6UqAP/ > >> > >>>> Imagine that the query takes 10 seconds to appear, if I continue to > >>>> click the go button .. other requests are sent to the server. > >> > >>>> Is there a way to block the function without changing the name of the > >>>> ID? > >> > >> --http://tbela99.blogspot.com/ > >> > >> fax : (+33) 08 26 51 94 51 >
