Upload
<k-upload>
The Upload component is a combination of a native file input and a dialog. The native file input is invisible and only serves to open the file selector from the OS. Once files are selected the dialog will open and show the progress and potential upload errors.
Props
You can use component props to set default params, which will always be used when the open
or drop
methods are called.
accept
String (default: *)
attributes
Object (default: null)
max
Number (default: null)
multiple
Boolean (default: true)
url
String (default: null)
Methods
drop(files, params)
Instead of opening the file picker first you can also start the uploader directly, by "dropping" a FileList from a drop event for example.
open(params)
Opens the uploader with the object of given parameters. For all available parameters, check out the component props. If no additional parameters are passed, the properties from the upload element are used.
Events
@success
Fired when all files have been uploaded successfully.
Since 3.1.0
The API response is returned as second argument in the @success
event:
@error
Fired when something went wrong.