public interface FileDialogStartHandler
uploader.setFileDialogStartHandler(new FileDialogStartHandler() {
public boolean onFileDialogStart(FileDialogStartEvent event) {
Window.alert("Starting the file selection dialog...");
return true;
}
});
Note that the 'fileDialogStart' is fired after selectFile for selectFiles is called. This
event is fired immediately before the File Selection Dialog window is displayed. However,
the event may not execute until after the Dialog window is closed.
See the documentation on the FileDialogStartEvent class for more details on the data
available when a file dialog start event occurs.
| Modifier and Type | Method and Description |
|---|---|
boolean |
onFileDialogStartEvent(FileDialogStartEvent fileDialogStartEvent)
This method is fired whenever a file dialog start event occurs in the Uploader component.
|
boolean onFileDialogStartEvent(FileDialogStartEvent fileDialogStartEvent)
FileDialogStartEvent class for more details on the data available when this
event is fired.fileDialogStartEvent - The details of the event that occurred.