Declined
Last Updated: 21 Jun 2022 09:22 by ADMIN
Declined
Last Updated: 21 Jun 2022 09:26 by ADMIN

The ProgressBar actually indicates the upload process from the client to the server but does not reflect the upload process from the server to the cloud service.


			
Unplanned
Last Updated: 27 Apr 2021 17:32 by Matthew
Created by: Andy
Comments: 1
Category: CloudUpload
Type: Feature Request
5

Add the ability to upload whole folders to the RadCloudUpload, similar to the FR for AsyncUpload:

Unplanned
Last Updated: 14 Jun 2021 10:40 by ADMIN
Created by: Massimiliano
Comments: 0
Category: CloudUpload
Type: Feature Request
4
Allow direct upload to Youtube with Cloud Upload or Async Upload
Unplanned
Last Updated: 14 Jun 2021 10:30 by ADMIN
Created by: Matthew
Comments: 2
Category: CloudUpload
Type: Feature Request
4
Follow Amazon's migration guide to update the RadCloudUpload to support version 3.x of Amazon's SDK -- it has been out for quite some time.  You cannot have both v2 and v3 referenced in the same project, and Telerik forcing us to use v2 is holding back development with other items in v3.
http://docs.aws.amazon.com/AWSSdkDocsNET/V3/DeveloperGuide/net-dg-migration-guide-v3.html
Unplanned
Last Updated: 07 Apr 2020 13:26 by ADMIN
Created by: Charles
Comments: 0
Category: CloudUpload
Type: Feature Request
4
Unplanned
Last Updated: 14 Jun 2021 10:25 by ADMIN
Created by: rinu
Comments: 1
Category: CloudUpload
Type: Feature Request
3
The existing RadCloudUpload uses Azure SDK to transfer the files across to the blob. This will lead to an upload handler then upload the files to the server. The problem with this is that to upload a large file it till take a long. Is there any chance to add functionality to send files from client side? The azure now support CORS support which enables us to upload the files faster with no intervention from the server. This will be a knockout.

 Is there any chance to avoid these handlers and sent it directly to the server. The handler i think is making the uploader extremely slow as compared to the direct uploads from clients like "Azure Storage Explorer 6". Now there is cors support for Azure.
It will be nice to see a tool which does direct upload like. flajaxian http://www.flajaxian.com/flajaxian.com/DirectAmazonUploader1.0Help.html.

Best Regards
Rinu
Duplicated
Last Updated: 07 Apr 2020 14:12 by ADMIN
Created by: ERIC
Comments: 0
Category: CloudUpload
Type: Feature Request
2
When using the radcloudupload component with large files, the progress bar indicates that the download is finished when it is not. 
Is it possible to make the display match the reality of the download?
Thx
Unplanned
Last Updated: 09 Jan 2020 09:05 by ADMIN

Add a functionality, which allows developers to pass query string parameters from client to the custom handler. Similar to RadAsyncUpload.

Workaround:

<telerik:RadCloudUpload ID="RadCloudUpload1" runat="server" ProviderType="Azure"
            MultipleFileSelection="Automatic" OnClientFileSelected="onClientFileSelected"
            HttpHandlerUrl="~/Handlers/UploadToMultipleFoldersHandler.ashx">
</telerik:RadCloudUpload>

<script>
    function onClientFileSelected(sender, args) {
        var customParam = "test";
        sender._module._handlerUrl = "/Handlers/UploadToMultipleFoldersHandler.ashx?type=rcu&customParam=" + customParam;
    }
</script>

<%@ WebHandler Language="C#" Class="UploadToMultipleFoldersHandler" %>
  
using System;
using System.Web;
  
public class UploadToMultipleFoldersHandler : Telerik.Web.UI.CloudUploadHandler {
  
    public override void SetKeyName(object sender, Telerik.Web.UI.CloudUpload.SetKeyNameEventArgs e)
    {
        var param = HttpContext.Current.Request["customParam"];
               
        var carsFolder = HttpContext.Current.User.Identity.Name + "/";
        e.KeyName = string.Format("{0}{1}_{2}", carsFolder, Guid.NewGuid(), e.OriginalFileName);
    }  
}

Declined
Last Updated: 29 Jul 2016 13:01 by ADMIN
Created by: insomnia
Comments: 1
Category: CloudUpload
Type: Feature Request
1
It would be interesting to know what state is sending: Receiving file, assembly file...
It is not practical, take longer to assemble than submit, given the experience with the end-user interface...
(tested with Azure)

Regards
Won't Fix
Last Updated: 08 Jun 2022 08:17 by ADMIN
ADMIN
Created by: Hristo Valyavicharski
Comments: 1
Category: CloudUpload
Type: Bug Report
1

			
Completed
Last Updated: 20 Jun 2022 14:48 by ADMIN
ADMIN
Created by: Hristo Valyavicharski
Comments: 0
Category: CloudUpload
Type: Bug Report
1

			
Completed
Last Updated: 12 Nov 2018 10:18 by ADMIN
ADMIN
Created by: Rumen
Comments: 0
Category: CloudUpload
Type: Bug Report
1
There is a problem with uploading file which name contains greek, hebrew or russian letters. It is also replicated with other languages that contain non-latin letters, such as Japanese or Korean. 

Here are the steps to reproduce the problem.
1. Create text file "Καλώς ήλθατε.txt" and save it on local disc (file may contain any text).
2. Open http://demos.telerik.com/aspnet-ajax/cloud-upload/examples/overview/defaultcs.aspx
3. Click Select button and browse file "Καλώς ήλθατε.txt"
4. Message "Uploading Files 1/1" is displayed but file is not uploaded.
1. Create file Благодатное-небо-с-предстоящими.txt on local disc (file may contain any text).
2. Open http://demos.telerik.com/aspnet-ajax/cloud-upload/examples/overview/defaultcs.aspx
3. Click Select button and browse file Καλώς ήλθατε.txt
4. Message "Uploading Files 1/1" is displayed but file is not uploaded.



Here is the error from the console when trying to upload such a file:

Telerik.Web.UI.WebResource.axd?_TSM_HiddenField_=ctl00_QsfScriptManager_TSM&compress=1&_TSM_Combine…:6 Uncaught Error: Sys.ArgumentException: Cannot deserialize. The data does not correspond to valid JSON.
Parameter name: data
    at Function.Error.create (Telerik.Web.UI.WebResource.axd?_TSM_HiddenField_=ctl00_QsfScriptManager_TSM&compress=1&_TSM_Combine…:6)
    at Function.Error.argument (Telerik.Web.UI.WebResource.axd?_TSM_HiddenField_=ctl00_QsfScriptManager_TSM&compress=1&_TSM_Combine…:6)
    at Function.Sys.Serialization.JavaScriptSerializer.deserialize (Telerik.Web.UI.WebResource.axd?_TSM_HiddenField_=ctl00_QsfScriptManager_TSM&compress=1&_TSM_Combine…:6)
    at c.RadCloudUpload.HandlerUploader._successfulResponseStatus (RadCloudUploadScripts.js:477)
    at XMLHttpRequest.p (RadCloudUploadScripts.js:463)
Unplanned
Last Updated: 12 May 2023 11:17 by ADMIN
Unplanned
Last Updated: 13 Aug 2024 13:59 by ADMIN
Created by: akshay
Comments: 2
Category: CloudUpload
Type: Feature Request
1

We would like to request updating the Azure library for uploading files to Azure Blob Storage.

The WindowsAzure.Storage library has been deprecated and is no longer maintained.

Completed
Last Updated: 14 Mar 2014 09:25 by ADMIN
ADMIN
Created by: Hristo Valyavicharski
Comments: 1
Category: CloudUpload
Type: Feature Request
0
ADD: Functionality to set Amazon provider's keys via properties.
Completed
Last Updated: 14 Mar 2014 10:55 by ADMIN
ADMIN
Created by: Hristo Valyavicharski
Comments: 1
Category: CloudUpload
Type: Feature Request
0
ADD: Tokens authentication support for RadCloudUpload's Amazon Provider
Won't Fix
Last Updated: 30 Jun 2015 12:30 by ADMIN
ADMIN
Created by: Hristo Valyavicharski
Comments: 1
Category: CloudUpload
Type: Bug Report
0

			
Declined
Last Updated: 29 Jul 2016 13:30 by ADMIN
Created by: Jack
Comments: 1
Category: CloudUpload
Type: Feature Request
0
Please consider adding Rackspace (uses OpenStack) to the list of custom providers or make it simple to plug in a custom provider.

All the providers are fairly cookie cutter...

jack
1 2