3 Answers, 1 is accepted
0
Hello Wild,
Can you elaborate a bit on the exact element in the FileExplorer Grid you want to make Editable?
In case you want to add a BreadCrumb like functionality navigating through the FileExplorer's items, you can find more details on a possible way to achieve it here:
http://www.telerik.com/forums/anyway-to-make-clickable-breadcrumb
Regards,
Vessy
Telerik
Can you elaborate a bit on the exact element in the FileExplorer Grid you want to make Editable?
In case you want to add a BreadCrumb like functionality navigating through the FileExplorer's items, you can find more details on a possible way to achieve it here:
http://www.telerik.com/forums/anyway-to-make-clickable-breadcrumb
Regards,
Vessy
Telerik
Do you need help with upgrading your ASP.NET AJAX, WPF or WinForms projects? Check the Telerik API Analyzer and share your thoughts.
0

Wild
Top achievements
Rank 1
answered on 11 Apr 2016, 12:12 AM
Hi Vessy,
I just can't get reference in my radfileexplorer same as in this example with radmenu. I'm trying this:
RadTreeNode currentnode = RadFileExplorer2.TreeView.FindNodeByUrl(Request.Url.PathAndQuery);
this returns null always, why?
so I cannot reach this part:
if (currentnode != null)
{
PageTitleLiteral.Text = currentnode.Text;
DataBindBreadCrumbSiteMap(currentnode);
}
and
private void DataBindBreadCrumbSiteMap(RadTreeNode currentNode) {...}
0
Hi Wild,
This behavior is expected as the TreeView nested in FileExplorer does not have a full implementation due to the complex logic of FileExplorer itself. I would advice that you consider some logic, using the client-side folder-selecting API of FileExplorer (e.g. you can try the loadFolder method):
http://docs.telerik.com/devtools/aspnet-ajax/controls/fileexplorer/client-side-programming/overview
Regards,
Vessy
Telerik
This behavior is expected as the TreeView nested in FileExplorer does not have a full implementation due to the complex logic of FileExplorer itself. I would advice that you consider some logic, using the client-side folder-selecting API of FileExplorer (e.g. you can try the loadFolder method):
http://docs.telerik.com/devtools/aspnet-ajax/controls/fileexplorer/client-side-programming/overview
Regards,
Vessy
Telerik
Do you need help with upgrading your ASP.NET AJAX, WPF or WinForms projects? Check the Telerik API Analyzer and share your thoughts.