Called during the save request.
onProgress = function(event)
This event is triggered during the save request.
For the event to be triggered, the server must respond with a Content-Length header during the XMLHttpRequest upload progress event.
You can add event listener during the object creation:
or after the object has been created:
The event handler is called before the default action of the event is triggered. You can cancel the default action by calling
event.preventDefault(). To perform an action
after the event is fully processed, define
event.onComplete function.
Cancelling this event will prevent the progress overlay from being updated.
See
events page in utilities for more details.