The onJobProgress () event handler provides global job progress notifications.
Note: By default, this method is not implemented and is intended to be overridden.
onJobProgress( event )
|
event |
String |
A jQuery event object. |
Undefined
onJobProgress: function() {
var search = this.getContext().get("search");
var count = this.getEntityCount(search);
this.setCountHeader(count, search.job.isDone());
},