Event - file uploaded
Use onFileUploaded event handler to react on every particular file uploaded.
The handler is called with file object as an argument.
file = { id: "1", name: "file.name", uploaded: true/false, error: true/false };
uploaded is true if the file was successfully uploaded. If error happened during upload, error property will be true and the upload will stop.