Completed
Last Updated: 22 Jun 2022 11:57 by ADMIN
Won't Fix
Last Updated: 27 May 2021 12:39 by ADMIN
Created by: Ed
Comments: 1
Category: AsyncUpload
Type: Feature Request
0
The RadAsyncUpload control is used on forms with other controls, and sometimes we need to validate the control, that is require that the user uploads a file before the form can be submitted.  We have to use a Customvalidator and check the controls client-side properties to see if it has a file.  But if you set the ControltoValidate property an exception occurs.  
Please support this property so that a radAsyncUpload control can be associated with an ASP.Net validator.
Unplanned
Last Updated: 17 Oct 2016 08:02 by ADMIN
Workaround - Toggle drop zone visibility or enable/disable it, using AsyncUpload OnClientFileUploaded and OnClientFileUploadRemoved events:

<div class="dropfile" style="height: 20px; width: 120px; background-color: red; display: block">
</div>
<telerik:RadAsyncUpload ID="fimFileImport" runat="server" DropZones=".dropfile" MaxFileInputsCount="1"
	RenderMode="Lightweight" OnClientFileUploaded="OnClientFileUploaded" OnClientFileUploadRemoved="OnClientFileUploadRemoved" >
</telerik:RadAsyncUpload>

<script type="text/javascript">
	function OnClientFileUploaded(sender, args) {

		var maxFileCount = sender.get_maxFileCount();
		var uploadedFilesLength = sender.getUploadedFiles().length;
		
		if (maxFileCount === uploadedFilesLength) {
			$telerik.$('.dropfile').hide();
		}
	}

	function OnClientFileUploadRemoved(sender, args) {

		var maxFileCount = sender.get_maxFileCount();
		var uploadedFilesLength = sender.getUploadedFiles().length;

		if (maxFileCount > uploadedFilesLength) {
			$telerik.$('.dropfile').show();
		}
	}
</script>
Completed
Last Updated: 12 Aug 2021 15:45 by ADMIN
Release R3 2021
Completed
Last Updated: 23 Jun 2022 10:17 by ADMIN
ADMIN
Created by: Vessy
Comments: 0
Category: AsyncUpload
Type: Bug Report
0
File drag and drop is broken in MS Edge Creator's Edition. Reproducible in the following demo:

http://demos.telerik.com/aspnet-ajax/asyncupload/examples/draganddrop/defaultcs.aspx

Completed
Last Updated: 06 May 2020 07:34 by ADMIN
Created by: Theo
Comments: 1
Category: AsyncUpload
Type: Feature Request
0
Why not add a "basic mode" to radasyncupload? that saves the selected file(s) in the target folder as soon as the upload is complete without the need for an extra postback?

Or facilitate a postback through a popup "upload complete" with an ok button?

And a little feedback in general on the documentation nearly all the examples have all the bells and whistles active, which makes them hard to read for programmers with little experience like me. 

Why not have every control with a absolutely minimalistic example that only shows the core functionality?

Completed
Last Updated: 14 Aug 2018 11:24 by ADMIN
ADMIN
Created by: Rumen
Comments: 0
Category: AsyncUpload
Type: Bug Report
0
The drop zone and the custom drop zones are shifted below their expected positions in Edge 40.

Check the following video demonstration https://www.screencast.com/t/2m8SxR8jbwb.

The problem is reproducible in the http://demos.telerik.com/aspnet-ajax/asyncupload/examples/draganddrop/defaultcs.aspx demo.
Completed
Last Updated: 08 Mar 2019 09:39 by ADMIN
When the ChunkSize of RadAsyncUpload is set the files are not fully uploaded. A sample excel file to reproduce the issue is attached to this reply.
Temporary fix:
Remove the ChunkSize setting of the AsyncUploade:

        <telerik:RadAsyncUpload ID="UploadFile" runat="server" MultipleFileSelection="Automatic"
            OverwriteExistingFiles="true" ReadOnlyFileInputs="true" InputSize="45" EnableViewState="true" TargetFolder="~/UploadedFiles">
        </telerik:RadAsyncUpload>

Steps to reproduce:

1. Run the following configuration and upload the attached to this item file
        <telerik:RadAsyncUpload ID="UploadFile" ClientIDMode="AutoID" runat="server" MultipleFileSelection="Automatic"
            OverwriteExistingFiles="true" ReadOnlyFileInputs="true" ChunkSize="3145728" InputSize="45" EnableViewState="true" TargetFolder="~/UploadedFiles">
        </telerik:RadAsyncUpload>
        <telerik:RadButton runat="server" Text="Upload"></telerik:RadButton>


Expected: An 11MB file is uploaded
Actual: An 8MB file is uploaded (the last chunk part is missing)


Completed
Last Updated: 15 Mar 2019 08:33 by ADMIN
Created by: Alex Kapitanovskyy
Comments: 1
Category: AsyncUpload
Type: Bug Report
0
After the update from version 2018.2.710 to 2019.1.2015 the files bigger than 2 MB are cut off (up to 2 MB) and broken during the upload.
Completed
Last Updated: 17 Jul 2020 15:07 by Diogo Mendonça
Created by: Diogo Mendonça
Comments: 2
Category: AsyncUpload
Type: Bug Report
0

Hello,

I have a problem with postback on RadAsyncUpload in my project.

So, I created a simple project, with your example (https://docs.telerik.com/devtools/aspnet-ajax/controls/asyncupload/how-to/how-to-persist-uploaded-files) and the problem remains.

if I define PostbackTriggers on the aspx page, after the post back, I can see the files uploaded on the page, but the UploadedFiles.Count in code behind returns zero.

<telerik:RadAsyncUpload runat="server" ID="RadAsyncUpload1" PostbackTriggers="Button3,Button4"></telerik:RadAsyncUpload>

if I define PostbackTriggers on the aspx.vb page, after the post back I can't see the files uploaded on the page, but the UploadedFiles.Count in code behind returns 1.

RadAsyncUpload1.PostbackTriggers = New String() {Button1.ClientID, Button2.ClientID}

 

So, there is no way to, after the postback, present the uploaded files in page and values in  RadAsyncUpload.UploadedFiles.

 

Please, check the attach files.

Best Regards,

Mauro Santos

1 2 3 4