So based on this: http://demos.telerik.com/kendo-ui/upload/angular , I should be able to combine these, but cannot. Am using angular (not v2) and have basically went through this verbatim with no luck. I mean, I drag or select, and it does not show any files. My code in my view is:
<div class="de
<form> <div class="demo-section k-content" ng-controller="claimsController"> <div> <h4>Upload files</h4> <input name="files" type="file" kendo-upload k-async="{ saveUrl: 'save', removeUrl: 'remove', autoUpload: true }" k-select="onSelect" /> </div> <div style="padding-top: 1em;"> <h4>Console</h4> <div class="console"></div> </div> </div></form>