Ticket #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: | |
| Blocking: | Blocked by: |
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
Change History
comment:4 Changed 3 years ago by scott.gonzalez
- Status changed from new to closed
- Resolution set to fixed
Fixed in 0b6710a.
comment:6 Changed 3 years ago by Scott González
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.