I'm using KendoUploader with autoUpload=false. When the autoUpload is set to false, on bottom side of uploader is displayed button to upload files manually. I would like to ask, if is possible to hide bottom buttons and somehow call some method/attribute of Upload component to start upload with the script. Is it possible?
(I would like to start upload after success submit of Kendo Form).
<Upload
autoUpload={false}
batch={false}
multiple={true}
defaultFiles={[]}
withCredentials={false}
saveUrl={"https://demos.telerik.com/kendo-ui/service-v4/upload/save"}
removeUrl={"https://demos.telerik.com/kendo-ui/service-v4/upload/remove"}
/>
Thanks a lot for each help :-)