or


Hi
I have 2 questions that I need some help with if possible.
1)
I have implemented the RadAsyncUpload conrol in my web application to allow a user to upload files to the server. I would like to clear the uplaoded file list above the select button and this uploaded files in Javascript. Is this possible?
2)
How do a person code for when a file already exists using the RadAsyncUpload conrol?
Thank you
Fred
<telerik:RadFileExplorer ID="RadFileExplorer1" Runat="server" Width="100%" OnClientItemSelected="OnClientItemSelected" ExplorerMode="FileTree" OnClientLoad="OnFileExplorerLoad" VisibleControls="TreeView, Grid, Toolbar, ContextMenus" TreePaneWidth="100%" BorderColor="Transparent" BorderStyle="None" EnableCopy="True" Height="600px" > <Configuration ViewPaths="~/Customers" UploadPaths="~/Customers/" DeletePaths="~/Customers/" MaxUploadFileSize="2147483647" /> </telerik:RadFileExplorer>function checkUploadedFilesSize(progressArea, args) { if (!progressArea.confirmed && args.get_progressData().RadUpload.RequestSize > 1073741829) { document.getElementById('Label1').innerHTML = "max file size exceeded"; progressArea.cancelRequest(); } }