I have implemented kendo upload in my angular project
component.html
<kendo-upload
#upload
[autoUpload]="false"
(select)="onSelectEvent($event)"
(remove)="onRemoveEvent($event, upload)"
(upload)="onUploadEvent($event)"
[multiple]="false"
[restrictions]="myRestrictions">
</kendo-upload>
I want to disable the 'Select file' button once the file is selected as in picture and enable once user clicks on clear button or 'X'.
Please help me with your suggestions as I'm new to Kendo and couldn't find documentation.