I've got a jQueryUI progressbar that should show the percentage of a query done. Oracle has a nice system table that lets you see operations that will take more than 10 seconds. I'm trying to make staggered $.ajax calls to this query in order to refresh the progress bar.
Problem is, I can either get the loops to make rapid-fire requests without any wait time, or just delay the entire JavaScript from executing.
I start the first request by clicking my "Execute" button in a jQueryUI dialog.
$("#dlgQuery").dialog({
buttons: {
Execute: function () {
$(this).dialog("close");
StartLoop();
}
}
});
I'm trying to build either the StartLoop()
function or make a recursive GetProgress()
function. Ideally, I will have a public variable var isDone = false
to act as my indicator for when to terminate the loop or stop recursively calling the function.
For simplicity I have just made a static loop that executes 100 times:
function StartLoop(){
for (var i = 0; i < 100; i++) {
GetProgress();
}
}
And here's my sample ajax request:
function GetProgress() {
$.ajax({
url: "query.aspx/GetProgress",
success: function (msg) {
var data = $.parseJSON(msg.d);
$("#pbrQuery").progressbar("value", data.value);
//recursive?
//GetProgress();
//if (data.value == 100) isDone = true;
}
});
}
So what I've found is, so far:
setTimeout(GetProgress(), 3000)
in StartLoop()
freezes Javascript, and the dialog does not close (I assume, because it will wait until the query is done).
This one, pausecomp(3000)
does much the same thing.
If I call either of these in the "success" function of my AJAX request, it gets ignored (probably because it's starting another call asynchronously).
I'm kinda stuck here, any help would be appreciated, thanks.
See Question&Answers more detail:
os