Hi,
I am using upload control as below:
<input type="file"
kendo-upload
k-async="{ saveUrl: "/api/upload/",autoUpload: true }"
k-success="onImportSuccess" />
On onImportSuccess function, I need to access to $scope for doing something after uploaded. How can I do that?
onImportSuccess = function(e) {
console.log($scope); // --> show scope is undefined
}
Thanks.