public interface FileQueuedHandler
uploader.setFileQueuedEventHandler(new FileQueuedHandler() {
public boolean onFileQueued(FileQueuedEvent event) {
Window.alert("File with name " + event.getFile().getName() + " is ready to uploader");
return true;
}
});
Note that the 'fileQueued' event is fired for each file that is queued after the File
Selection Dialog window is closed.
See the documentation on the FileQueuedEvent class for more details on the data
available when a file queued event occurs.
| Modifier and Type | Method and Description |
|---|---|
boolean |
onFileQueued(FileQueuedEvent fileQueuedEvent)
This method is fired whenever a file queued event occurs in the Uploader component.
|
boolean onFileQueued(FileQueuedEvent fileQueuedEvent)
FileQueuedEvent class for more details on the data available when this event is
fired.fileQueuedEvent - The details of the event that occurred.