I'm attempting to use the radfileexplorer to browse a folder on the root of my web application. The application is in source control, although I do have the directory I'm wishing to use checked out.
I cannot get it to display any of the files contained in this directory (although it will show child directories). All of the buttons in the toolbar are disabled.
I've also attempted setting the paths in the codebehind also to no effect.
thanks
~Dave
I cannot get it to display any of the files contained in this directory (although it will show child directories). All of the buttons in the toolbar are disabled.
<telerik:RadFileExplorer runat="server" ID="FileExplorer1" EnableOpenFile="true" DisplayUpFolderItem="true" EnableCreateNewFolder="true" Enabled="true"> <Configuration ViewPaths="~/test" UploadPaths="~/test" DeletePaths="~/test" /></telerik:RadFileExplorer>I've also attempted setting the paths in the codebehind also to no effect.
protected void Page_Load(object sender, EventArgs e) { string[] applicationName = new string[] { this.ResolveUrl("~/test") }; string[] allowedUploadPaths = new string[] { this.ResolveUrl("~/test") }; string[] allowedDeletePaths = new string[] { this.ResolveUrl("~/test") }; FileExplorer1.Configuration.ViewPaths = applicationName; FileExplorer1.Configuration.DeletePaths = allowedDeletePaths; FileExplorer1.Configuration.UploadPaths = allowedUploadPaths; }thanks
~Dave
