#3500 closed enhancement (fixed)
Progressbar callback at the end
Reported by: | wiibaker | Owned by: | paul |
---|---|---|---|
Priority: | major | Milestone: | 1.8.6 |
Component: | ui.progressbar | Version: | 1.6rc2 |
Keywords: | progressbar callback | Cc: | |
Blocked by: | Blocking: |
Description
Hi.
I changed to use the ui progressbar, but noticed that it didn't have a callback for the event at the end of the bar. I needed that for my project.
I did a hack to do that like this:
Added the following line animate methods complete callback (around line 70)
self.end();
Also I added the method after the text method (around line 178)
end: function(){
this._propagate('end', this.ui());
},
Now you can call the progressbar like this:
$("#progressbar").progressbar({end: doMyThingAtTheendMethod});
Could something like this added to the plugin?
Attachments (1)
Change History (7)
comment:1 Changed 14 years ago by
Priority: | minor → major |
---|
comment:2 Changed 14 years ago by
Milestone: | TBD → 1.6 |
---|
comment:3 Changed 14 years ago by
Milestone: | 1.7 → 1.8 |
---|
Changed 14 years ago by
Attachment: | 3500.ui.progressbar.js.patch added |
---|
comment:5 Changed 12 years ago by
Milestone: | 1.9 → 1.8.6 |
---|
comment:6 Changed 12 years ago by
Progressbar: Added a complete event. Fixes #3500 - Progressbar callback at the end.
Changeset: 0b6710aed7fc9a9412a975c9f70d3fd6a87c4b02
Progressbar should be reviewed to make sure that all reasonable callbacks have been added.