Select
eventsFires when a file is selected.
The cancelling of the
selectevent prevents the selection from occurring.
Event Data
e Object
A custom event object. The event can be canceled similar to a standard jQuery event object by using e.preventDefault();.
e.files Array
An array of the selected files.
Each item of the array is an object with the following properties:
- name - The name of a selected file, including its extension.
- extension - The file extension of a selected file, including the leading dot. For example,
.jpg,.png, and so on. - size - The size of a selected file in bytes. If not available, the value is
null. - rawFile - An in-memory representation of a selected file.
- uid - The unique identifier of the file or batch of files.