4 Answers, 1 is accepted
Hello Louise,
I would suggest to check the browsers developer tools for JavaScript errors that may hint what is the reason for this behavior. If the problem is still reproducing, you could share with us the exact implementation of the Upload widget.
Regards,Dimiter Madjarov
Telerik by Progress
<input title="" name="files" type="file" kendo-upload k-options="options" />
and on the js file:
$scope.options = {
config: {
async: {
saveURL : "https://s3-ap-southeast-2.amazonaws.com/xxx",
autoUpload: false
},
multiple: true
}
}
If i change the saveurl to point to my own site, the upload button shows by when it points to amazons3 the button doesnt show. there is no error on firebug and chrome developer tools
Hello Louise,
The "url" part of the saveUrl property does not have to be in upper case. Could you try renaming it and let me know if that resolves the problem:
http://docs.telerik.com/kendo-ui/api/javascript/ui/upload#configuration-async.saveUrl
Dimiter Madjarov
Telerik by Progress