wijmo.progressbar.wijprogressbar Namespace > options type : progressChanging Event |
The event that raises upon running the ProgressBar. The parameter is an object:
{oldValue:xxx,newValue:xxx}
Return false to cancel the event and stop the ProgressBar from running.
Javascript (Usage) | |
---|---|
$(function () { // Set progressChanging event handler function $(".selector").wijprogressbar({ progressChanging : function (e, data) { } }); }); |
Javascript (Specification) | |
---|---|
progressChanging = function ( e : jQuery.Event, data : IProgressChangingEventArgs ) { }; |