Hello,
I am using the RadAsyncUpload control to upload filesd to our website. Everything works fine except the drag and drop upload. I can manually add as many files as I want by clicking on the button, but I can only add one file trough drag and drop either trough the control itself or the drop zone. Any subsequent attempts to add a file by dropping it results in a "Uncaught TypeError: Cannot read property 'input' of undefined" in chrome or a "TypeError: p is undefined" in firebug. I tried playing with the AutoAddFileInputs parameter without success.
right now the tag looks like this :
and I can drag and drop several files at once but not one after the other.
I use Visual Studio 2012, RadControls Q3 2012, Windows 8 and .net framework 4.0 and we mainly use VB ( a C# solution would be fine since I'm fluent in both)
I am using the RadAsyncUpload control to upload filesd to our website. Everything works fine except the drag and drop upload. I can manually add as many files as I want by clicking on the button, but I can only add one file trough drag and drop either trough the control itself or the drop zone. Any subsequent attempts to add a file by dropping it results in a "Uncaught TypeError: Cannot read property 'input' of undefined" in chrome or a "TypeError: p is undefined" in firebug. I tried playing with the AutoAddFileInputs parameter without success.
right now the tag looks like this :
<
telerik:RadAsyncUpload
runat
=
"server"
ID
=
"rfUpload"
Width
=
"225px"
DropZones
=
"#DropZone"
MultipleFileSelection
=
"Automatic"
AutoAddFileInputs
=
"true"
OnClientAdded
=
"fiad"
OnClientFileUploadRemoved
=
"fiad"
OnClientFileUploaded
=
"fiup"
UploadedFilesRendering
=
"BelowFileInput"
/>
and I can drag and drop several files at once but not one after the other.
I use Visual Studio 2012, RadControls Q3 2012, Windows 8 and .net framework 4.0 and we mainly use VB ( a C# solution would be fine since I'm fluent in both)