This is a migrated thread and some comments may be shown as answers.

reference to breadcrumb in fileexplorer?

3 Answers 33 Views
FileExplorer
This is a migrated thread and some comments may be shown as answers.
Wild
Top achievements
Rank 1
Wild asked on 29 Mar 2016, 01:59 AM

hi,

how to get reference to breadcrumb box in fileexplorer grid?  I'd like to make it editable?

is it possible?

thanks

3 Answers, 1 is accepted

Sort by
0
Vessy
Telerik team
answered on 31 Mar 2016, 11:20 AM
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
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
Vessy
Telerik team
answered on 13 Apr 2016, 03:01 PM
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
Do you need help with upgrading your ASP.NET AJAX, WPF or WinForms projects? Check the Telerik API Analyzer and share your thoughts.
Tags
FileExplorer
Asked by
Wild
Top achievements
Rank 1
Answers by
Vessy
Telerik team
Wild
Top achievements
Rank 1
Share this question
or