0

using kendoFileSelectFileTemplate,

would like to have some Angular TypeScript code run when the user clicks in the whitespace in the <li> elements rendered by the kendo-upload control.

enter image description here

Mike W
  • 425
  • 3
  • 12

1 Answers1

0
<ng-template kendoFileSelectFileTemplate let-files let-state="state">
            <div (click)="onClick()">Name: {{files[0].name}} Size: {{files[0].size}} bytes</div>
</ng-template>

https://stackblitz.com/edit/angular-h5z55d

Mike W
  • 425
  • 3
  • 12