Can you wait for javascript callback? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-23T00:31:00Z http://stackoverflow.com/feeds/question/436608 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/436608/can-you-wait-for-javascript-callback 2 Can you wait for javascript callback? klogan 2009-01-12T19:13:55Z 2009-01-16T06:45:42Z <p>I'm trying to use the jQuery alerts dialog library from <a href="http://abeautifulsite.net/notebook/87" rel="nofollow">http://abeautifulsite.net/notebook/87</a> instead of the default alerts (which look pretty awful in my opinion). This seems to be a great library, but there is not an example of how to use the jConfirm library.</p> <p>I need to do something like this:</p> <pre><code>function confirm() { var result = false; var response = false; jConfirm('are you sure?', 'Confirmation Dialog', function(r) { result = r; response = true; return r; }); if (response == true) { alert(result); return result; } else { //wait for response alert('hi'); } } </code></pre> <p>and my call from my .net button: </p> <p>I've posted a comment on the plugin's website (just this morning) and did Google searches for javascript and waiting for a callback to complete with no results.</p> <p>Any ideas on how to use the callback correctly to get the result, before the rest of the javascript executes?</p> <p>Thanks.</p> http://stackoverflow.com/questions/436608/can-you-wait-for-javascript-callback/436638#436638 0 Answer by Diodeus for Can you wait for javascript callback? Diodeus 2009-01-12T19:19:31Z 2009-01-12T19:19:31Z <p>I would assume you'd have to grab the response like this. I don't think you need a callback.</p> <pre><code>function confirm() { var response = jConfirm('are you sure?', 'Confirmation Dialog'); if (response) { alert(result); } else { //wait for response alert('hi'); } } </code></pre> http://stackoverflow.com/questions/436608/can-you-wait-for-javascript-callback/436709#436709 4 Answer by Jonathan Lonowski for Can you wait for javascript callback? Jonathan Lonowski 2009-01-12T19:36:57Z 2009-01-12T21:23:25Z <p>Since the callback is asynchronous (at least, in the sense that it's waiting on the user to do something), it might be easier to handle what you need to inside the callback:</p> <pre><code>function confirm() { jConfirm('are you sure?', 'Confirmation Dialog', function(r) { if (r) doSomething(); }); } </code></pre> <p><hr /></p> <p>@klogan [comments]</p> <p>I assume you got these from <a href="http://abeautifulsite.net/notebook/87" rel="nofollow">here</a>?</p> <p>The page gives you your answer: (look under <strong>Usage</strong>)</p> <blockquote> <p><em>These methods do not return the same values as confirm() and prompt(). You must access the resulting values using a callback function. (See the demo for more details.)</em></p> </blockquote> <p><hr /></p> <p>@klogan</p> <p>The point I'm trying to make is that there isn't really an easy way to accomplish what you want. Your trying to correlate <strong>procedural</strong> and <strong>event-driven</strong> programming -- something JavaScript doesn't help you do.</p> <p>The simplest (though, <strong><em>risky</em></strong>) solution is to use a pseudo-infinite-loop. But, if <code>callback</code> never gets called, you now have an actual infinite loop. And, depending on the JavaScript engine, you might kill the browser waiting.</p> <p>Point: <strong><em>Your best bet is to avoid</em></strong> <strike>this</strike> <strong><em>trying to force event-driven into procedural.</em></strong></p> <pre><code>function confirm() { var result = false; var response = false; jConfirm('are you sure?', 'Confirmation Dialog', function(r) { result = r; response = true; }); while(!response) continue; // wait return result; } </code></pre> http://stackoverflow.com/questions/436608/can-you-wait-for-javascript-callback/436755#436755 0 Answer by Ates Goral for Can you wait for javascript callback? Ates Goral 2009-01-12T19:50:07Z 2009-01-16T06:45:42Z <p>Technically, <strong>yes</strong>, but I wouldn't do that on a website.</p> <p>Take a look at <a href="http://neilmix.com/narrativejs/doc/index.html" rel="nofollow">Narrative JavaScript</a>, which is based off <a href="http://en.wikipedia.org/wiki/Narcissus_(JavaScript_engine)" rel="nofollow">Narcissus</a>.</p> <blockquote> <p>Narrative JavaScript is a small extension to the JavaScript language that enables blocking capabilities for asynchronous event callbacks. This makes asynchronous code refreshingly readable and comprehensible. </p> </blockquote> <p><a href="http://seleniumhq.org/" rel="nofollow">Selenium</a> uses this technology.</p> <p><hr /></p> <h2>Update</h2> <p>Check out <a href="http://www.xucia.com/strands-doc/index.html" rel="nofollow">JavaScript Strands</a>:</p> <blockquote> <p>JavaScript Strands adds coroutine and cooperative threading support to the JavaScript language to enable blocking capabilities for asynchronous event callbacks. This makes code that utilizes asynchronous operation much more linear, readable, and manageable. Strands is built upon Narrative JavaScript written by Neil Mix, and much of Narrative JavaScript has remained in Strands including much of this documentation.</p> <p>In JavaScript your code can't simply wait until an event has fired -- the event must always be handled by a separate, asynchronous event handler. Sometimes this is fine, but it often forces what ought to be a simple sequence of statements into gnarly contortions. It also breaks the ability to encapsulate functionality because calling functions must know to provide a callback handler. Strands provides the ability to suspend and resume threads of execution. Execution can suspend resume when the event is finished. This allows you to write hard-to-read asynchronous event handling in simple, linear, readable code that encapsulates implementation.</p> </blockquote> http://stackoverflow.com/questions/436608/can-you-wait-for-javascript-callback/437118#437118 0 Answer by bobince for Can you wait for javascript callback? bobince 2009-01-12T21:41:30Z 2009-01-12T21:41:30Z <pre><code>jConfirm('are you sure?', 'Confirmation Dialog', function(r) { result = r; response = true; return r; } ); if (response == true) { </code></pre> <p>This betrays a misunderstanding of the sequence of events that occurs using asynchronous code. Just because you've written it inline doesn't mean it's going to execute strictly top-to-bottom.</p> <ol> <li>jConfirm is called, receiving a function as one of its parameters, which it remembers.</li> <li>jConfirm displays its UI on the page and returns immediately.</li> <li>The 'if (response==true)' line executes. Really this should just read 'if (response)', the boolean comparison is superfluous. But in any case response is of course false. Your function gives up and exits, giving control back to the browser.</li> <li>The user clicks jConfirm's UI.</li> <li>jConfirm only now jumps into action and calls back the function you gave it and it remembered earlier.</li> <li>Your nested function sets response true, far too late for the 'if (response==true)' condition to do anything with it.</li> </ol> <p>You have written "//wait for response" as an alternative, but there is no JavaScript code you can write that will actually do that. Your function must return to give control back to the browser, before the browser can fire the click events on the jConfirm UI that make processing proceed.</p> <p>Ways to make asynchronous code work in a synchronous context (and vice versa) exist - in particular threads and coroutines (and their limited relation generators). But JavaScript has none of these features, so you must write your code to fit the synchronous-or-asynchronous model your library is using.</p> http://stackoverflow.com/questions/436608/can-you-wait-for-javascript-callback/437204#437204 1 Answer by Vincent Robert for Can you wait for javascript callback? Vincent Robert 2009-01-12T22:10:30Z 2009-01-12T22:10:30Z <p>You've just hit a big limitation in JavaScript. Once your code enters the asynchronous world, there is no way to get back to a classic procedural execution flow.</p> <p>In your example, the solution would be to make a loop waiting for the response to be filled. The problem is that JavaScript does not provide any instruction that will allow you to loop indefinitely without taking 100% of the processing power. So you will end up blocking the browser, sometimes to the point where your user won't be able to answer the actual question.</p> <p>The only solution here is to stick to the asynchronous model and keep it. My advice is that you should add a callback to any function that must do some asynchronous work, so that the caller can execute something at the end of your function.</p> <pre><code>function confirm(fnCallback) { jConfirm('are you sure?', 'Confirmation Dialog', function(r) { // Do something with r fnCallback &amp;&amp; fnCallback(r); // call the callback if provided }); } // in the caller alert('begin'); confirm(function(r) { alert(r); alert('end'); }) </code></pre> http://stackoverflow.com/questions/436608/can-you-wait-for-javascript-callback/437246#437246 0 Answer by klogan for Can you wait for javascript callback? klogan 2009-01-12T22:22:20Z 2009-01-12T22:22:20Z <p>Thanks for all the replies. It seems that this plugin isn't as easy to implement as the authors insist. Even Vincent's solution, though it may work (I haven't tried yet), doesn't seem to be the author's intent.</p> <p>I'll wait to hear from the authors and post the solution. Maybe they hadn't finished it themselves. If there isn't a good solution, I'll let you know too. This is a new plugin (less than a month old).</p> http://stackoverflow.com/questions/436608/can-you-wait-for-javascript-callback/442039#442039 0 Answer by DotnetShadow for Can you wait for javascript callback? DotnetShadow 2009-01-14T05:48:51Z 2009-01-14T05:48:51Z <p>Hi there,</p> <p>I think I have come up with a possible solution to this problem. I was reading this article: <a href="http://treasure4developer.wordpress.com/2008/06/23/calling-postback-event-from-javascript/" rel="nofollow">http://treasure4developer.wordpress.com/2008/06/23/calling-postback-event-from-javascript/</a></p> <p>Basically the idea is that you force the postback from javascript, at first I found that the postback would work but wouldn't call my button event, but after reading the article I found that I could detect if it was javascript postback and just call a method to do the processing</p> <p>Regards DotnetShadow</p>