New to Kendo UI for Angular? Start a free 30-day trial
SelectEvent
Arguments for the select
event. The select
event fires when the user
selects a file or multiple files for upload. If you cancel the event, the selection is prevented.
ts
@Component({
selector: 'my-upload',
template: `
<kendo-upload
[saveUrl]="uploadSaveUrl"
[removeUrl]="uploadRemoveUrl"
(select)="selectEventHandler($event)">
</kendo-upload>
`
})
export class UploadComponent {
uploadSaveUrl = 'saveUrl'; // should represent an actual API endpoint
uploadRemoveUrl = 'removeUrl'; // should represent an actual API endpoint
selectEventHandler(e: SelectEvent) {
console.log('File selected');
}
}
Methods
isDefaultPrevented | ||||
---|---|---|---|---|
If the event is prevented by any of its subscribers, returns | ||||
|
preventDefault |
---|
Prevents the default action for a specified event. In this way, the source component suppresses the built-in behavior that follows the event. |