RadAsyncUpload throws a javascript error: SCRIPT16389: System.NullReferenceException: Object reference not set to an instance of an object. at System.Windows.Browser.ManagedObjectInfo.Invoke(ManagedObject obj, InvokeType invokeType, String memberName, ScriptParam[] args) at System.Windows.Hosting.ManagedHost.InvokeScriptableMember(IntPtr pHandle, Int32 nMemberID, Int32 nInvokeType, Int32 nArgCount, ScriptParam[] pArgs, ScriptParam& pResult, ExceptionInfo& pExcepInfo) when Silverlight module is used and uploading is canceled.
When upload larger files the connection may dropped during the file uploading. In result of this the selected file will not be uploaded successfully and the user will have to start the uploading from the beginning. This operation can be very annoyng when connection is slow. The suggested features aims to allow resuming, when the failed file is selected again. The uploading should continue automatically from there it stopped.
I am using the RadAsyncUpload with UploadedFilesRendering="BelowFileInput". This works fine, but I would like the list to appear in the order they are selected not the reverse order. Is there away to accomplish this? It should look like the UploadedFilesRendering="AboveFileInput" list but appearing below. This should be a feature of the control which currently limited to above in the order they are select or below the reverse order. In either case you should be able to select the order the files are displayed in the UI.
There will be a validation that will stop dragged and dropped folders in the drop zone of RadAsyncUpload from being uploaded.
When validation is set in order prevent a user from uploading an unsupported file, it works fine when the user uploads files with extensions. The problem is, if the same user attempts to upload from a mobile device such as from google drive, the file typically has no extensions, and therefore it fails validation; even though it in fact is a supported file. Somehow, when we know it's a mobile device, tablet, or a MAC we need to be able to allow no extensions. Create an option or detect if it is be accessed from a mobile device, and allow us to choose if we want allow files to have no extensions, even if the validation is active so that if a file is uploaded without an extension in those cases it doesn't trigger the validation and fails clients side.
One of the issues with the asyncuploader is the inability to be able to reorder the list. There should be a way to allow for dragging and dropping the files in the desired order even after they've been uploaded to the list without having to delete the files only to upload them again in the required order.
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.
We would like the ability to perform drag and drop upload when using the Silverlight module. We have found and have much support from forums and posts that the FileApi module does not work with environments with Windows Authentication and IE 11. This is due to a know IE bug that is not going to be fixed. http://www.telerik.com/forums/telerik-async-upload-fails-in-ie11-on-load-balancer http://www.telerik.com/forums/radasyncupload-freezes http://www.telerik.com/forums/ie11-freezes-when-is-used-async-upload Although I can disable the FileApi, doing so prevents us from using the much loved drag and drop.
I would be nice to gain more control over radasyncupload's upload behavior when using database as storage for uploaded files. Consider this use case. You have file management web-app that uses SQL database as storage for uploaded files. In SQL database you use Filestream enabled table to store the uploaded file data. You like to allow your app users to upload multiple big files > 100 Mt at once. And you have limited disc space on your web server hosting your app. So you don't want to buffer those uploaded files on your web server in any point of the upload process. To be able to do so radasyncupload needs to be able to stream uploaded files to the SQL database as straight as possible. Chunk by chunk. radasyncupload already has feature that allows you to use your own generic handler to handle some of the upload process. It just needs expose some of those events that happens before process-event (maybe ProcessRequest?). So developer can start handling the HttpPostedFile's InputStream at the begining of the upload and stream it directly to the database. Like one can do with the regular upload controls like so: Public Sub ProcessRequest(ByVal context As HttpContext) Implements IHttpHandler.ProcessRequest Dim hpf As HttpPostedFile For i = 0 To context.Request.Files.Count - 1 hpf = context.Request.Files.Item(i) ... Using Command As SqlCommand = New SqlCommand(String.Concat("INSERT INTO Dokuments(DokumData...) values (@DokumData...)"), connection) 'Other params Command.Parameters.Add("@DokumData", SqlDbType.Binary, -1).Value = hpf.InputStream connection.Open() Command.ExecuteScalar() connection.Close() Next End Sub
Hi guys,
I can see async.concurrent feature in kendo ui upload control, do we have this feature or can have it in ajax upload control ?
https://docs.telerik.com/kendo-ui/api/javascript/ui/upload/configuration/async.concurrent
Currently the AsyncUpload saves the chunks in the Temporary folder using the original name of the file, the Process method of the Custom handler. When the Temporary folder name is very long, it can hit the Windows path length limitation of 260 symbols.
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?
We have created a KB article where a possible approach to achieve image resizing before the upload is suggested. You can find it at https://www.telerik.com/support/kb/aspnet-ajax/upload-(async)/details/resize-images-client-side-with-html5-before-uploading-with-radasyncupload The article describes a straightforward way on how to change the uploaded image dimensions. You can further improve and modify the logic in the _uploadFile function to allow the user to define the new dimensions or use a tool to allow the users to modify the image.
We would like to upload a folder's structure and content via asyncupload drag and drop functionality. This functionality exists with Chrome and FireFox now. Please add. Thanks.
Hi, When we upload files using RadAsyncUpload control, will get the uploaded file along with the two images. 1. check image 2. cross image (to delete the uploaded file) my question is can we overwrite these images in our application.