Hi.
although clearly stated here (http://www.telerik.com/help/aspnet-ajax/asyncupload-drag-and-drop-upload.html) that dropzone property is available starting Q3 2011, while using Q2 2012 version I do not see the dropzones attribute available in the RadAsyncUpload.
Obviously I tried to ignore it and simply add that attribute, but that did not work either.
my control looks like
although clearly stated here (http://www.telerik.com/help/aspnet-ajax/asyncupload-drag-and-drop-upload.html) that dropzone property is available starting Q3 2011, while using Q2 2012 version I do not see the dropzones attribute available in the RadAsyncUpload.
Obviously I tried to ignore it and simply add that attribute, but that did not work either.
my control looks like
<div class="upload-panel"><rad:RadAsyncUpload ID="fileAsyncUpload" runat="server" MultipleFileSelection="Disabled" Dropzone =".DropZone1" TemporaryFileExpiration="00:10:00" AllowedFileExtensions="pdf,ppt,pptx,doc,docx" HttpHandlerUrl="FileUpload.ashx" OnClientFileSelected="fileSelected" OnClientFileUploaded="fileUploaded" OnClientValidationFailed="fileValidationFailed" OnClientProgressUpdating="fileUploading" > <FileFilters> <rad:FileFilter Description="Document files (.PDF, .PPT, .PPTX, .DOC, .DOCX)" Extensions="pdf,ppt,pptx,doc,docx" /> </FileFilters> </rad:RadAsyncUpload> <div class="DropZone1" draggable="true"> <p>Custom Drop Zone</p> <p>Drop Files Here</p> </div> <div id="DropZone2"> <p>Custom Drop Zone</p> <p>Drop Files Here</p> </div> </div>