Application Framework Reference

Module API

onJobProgress()

The onJobProgress () event handler provides global job progress notifications.

Note: By default, this method is not implemented and is intended to be overridden.

Synopsis

onJobProgress( event )

Parameters

event

String

A jQuery event object.

Return Value

Undefined

Example

onJobProgress: function() {
    var search = this.getContext().get("search");
    var count = this.getEntityCount(search);
    this.setCountHeader(count, search.job.isDone());
},
 

See Also

onJobProgress()
onJobStatusChange()