jquery-ajaxQueue icon indicating copy to clipboard operation
jquery-ajaxQueue copied to clipboard

Feature request: Ability to see progress

Open iBobik opened this issue 12 years ago • 2 comments

In README there is not noticed methods or callbacks to see progress. Basically, I want to show user that something is being downloaded and hide it when all downloads are finished.

Could you add callback "finished" and "progress" (with count of remaining)?

iBobik avatar Mar 03 '13 12:03 iBobik

Seems a few people are requesting some callbacks on the queue events, which would make sense.

gnarf avatar Mar 06 '13 16:03 gnarf

Progress is straight forward: In the actual Ajax request you could set: indexValue: i, based on the loop.

From there in .done for each request: this.indexValue would return the right index. You can output what ever you need based on that.

MY ISSUE: The issue I have is that I can not seem to get .when.then method to work after this process. IT seems to not hold all the items in the ajaxQueue

thenexus00 avatar Feb 01 '17 03:02 thenexus00