Completed
Last Updated: 08 May 2020 15:51 by ADMIN
Release R2 2017
ADMIN
Vessy
Created on: 01 Nov 2016 11:43
Category: FileExplorer
Type: Bug Report
0
Error message is alerted when the viewpaths in FileExplorer are changed dynamically
Changing the paths of FileExplorer dynamically leads to popping an alert message for "non-existing folder" even in no InitialPath has been set. After closing the alert RadFileExplorer gets bound successfully.

video: http://screencast.com/t/NSGjo8moC5eL

The bug is introduced in version 2015.2.729.


Steps to reproduce:
1. Run the following code:
ASP:
<telerik:RadFileExplorer ID="RadFileExplorer1" runat="server">
     <Configuration ViewPaths="~/" />
</telerik:RadFileExplorer>
<telerik:RadButton ID="Btn1" runat="server" Text="Change ViewPath" OnClick="Btn1_Click"></telerik:RadButton>

CS:
protected void Btn1_Click(object sender, EventArgs e) {
    RadFileExplorer1.InitialPath = "/Bin";
    RadFileExplorer1.Configuration.ViewPaths = new string[] { "~/Bin" };
}

2. Click the "Change ViewPath" button

Result: FileExplorer shows an alert with message "You are navigating to a non-existing folder or do not have proper permissions..."
2 comments
ADMIN
Vessy
Posted on: 08 May 2020 09:06

Hi Dave,

The error discussed in this thread is resolved in our 2017 R2 release, so you can upgrade to the latest version of the controls in order to have the fix in your project. Unfortunately, the fix itself is implemented on the server-side and there is no way to be used as a separate workaround.

Regards,
Vessy
Progress Telerik

Progress is here for your business, like always. Read more about the measures we are taking to ensure business continuity and help fight the COVID-19 pandemic.
Our thoughts here at Progress are with those affected by the outbreak.
Dave
Posted on: 02 May 2020 16:37

Thanks for the post.  Did you find a solution to this problem? I'm facing the same thing. If I could just figure out how to suppress the error message, all would be well.

Thanks,
Todd