Add support to the Upload widget to upload files to an OData service, for instance to add attachments to SharePoint list items using SharePoints OData service. At the same time it would be good to be able to specify the urls for the Upload widget in an upload-datasource in a view model to which the Upload widget is databound, basically separate the uploading from the widget. That way you can choose to use an OData upload-datasource or a multipart/form-data upload-datasource. Obviously this OData upload-datasource may only be supported in browsers that support the HTML5 file api.
Hello,
You upload a file to odata service by following this how-to article: https://docs.telerik.com/kendo-ui/controls/editors/upload/how-to/upload-odata.
Regards,
Ianko
Progress Telerik
Love the Telerik and Kendo UI products and believe more people should try them? Invite a fellow developer to become a Progress customer and each of you can get a $50 Amazon gift voucher.
Also, some better guidance and examples on how to implement the Upload feature with SharePoint would be great. Really struggling here on how to get it right .
The Kendo Upload widget really needs an option to allow the choice between oData upload and multipart/form-data datasources. Something similar to the processData parameter in jQuery's $ajax post would be helpful. I need to send the file as an ArrayBuffer in the payload of the http post in order to save it using SharePoint's oData service. I can do that with jQuery's $.ajax and also with AngularJS's $http request and as a $resource. Is there an option in the Upload widget I maybe missed? Thanks!