search for: bb5cw

Displaying 3 results from an estimated 3 matches for "bb5cw".

Did you mean: bb5
2006 Feb 28
5
browser-crash with Ajax.Updater
Hi, on my page I start an ajax-request which returns rhtml-code (I use Rails) looping over some objects. When I place the following code within the loop my browser (FF) crashs: <script> var set_std_objekt = function (id) { new Ajax.Updater(''divname'', ''/dosomestuff'', { asynchronous:true, evalScripts:true }) } </script> <a
2006 Mar 03
1
Dynamic JS updating / data-preloading using ajax
Hi all, I''m building an application which uses mostly ajax to update the sections of the page. Now I''ve come to some thoughts on how to make the ajax-handling more efficient / less buggy. Currently, when the page loads up, I start some "new Ajax.Updater"-stuff to fill some sections with content from the db. I also registered watchers which also start nearly the same
2006 Mar 07
2
How to sort execution of multiple ajax-calls
Hi, currently I execute 2-3 AJAX-Calls (located at the end of html-body) on loading the page. I run into problems now because they are executed parallel of course :) How can I garuantee that the Calls are executed when the page has loaded completely ? And, more interesing, how can I make one AJAX-Call start when the previous has completely finished ? I''ve read about Effect.Queues - is