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

Document Manager - Hide File Tree

1 Answer 134 Views
Editor
This is a migrated thread and some comments may be shown as answers.
Brett
Top achievements
Rank 2
Brett asked on 27 Jul 2009, 03:09 PM
By default the File Tree is open on the left of the document manager in Rad Editor.  It is using a splitter and can be closed by clicking on the splitter arrow button.

I would like to have the file tree column closed by default, or not available at all.  Is this possible, and if so how I do I go about doing this?  I am currently using vb.net.

Thanks
Brett

1 Answer, 1 is accepted

Sort by
0
Rumen
Telerik team
answered on 29 Jul 2009, 12:42 PM
Hi Brett,

Yes, you can hide the treeview by registering the external dialogs files of RadEditor, e.g.

<telerik:RadEditor runat="server" ExternalDialogsPath="~/EditorDialogs" ID="RadEditor1">
    <DocumentManager ViewPaths="~/" UploadPaths="~/" />
</telerik:RadEditor>

After that open the \EditorDialogs\FileBrowser.ascx file and set VisibleControls="AddressBox,Grid,Toolbar,ContextMenus" in the RadFileExplorer control, e.g.

<telerik:RadFileExplorer ID="RadFileExplorer1" Height="410px" Width="400px" TreePaneWidth="150px" VisibleControls="AddressBox,Grid,Toolbar,ContextMenus" runat="Server" EnableOpenFile="false" AllowPaging="true" />

Kind regards,
Rumen
the Telerik team

Instantly find answers to your questions on the new Telerik Support Portal.
Check out the tips for optimizing your support resource searches.
Tags
Editor
Asked by
Brett
Top achievements
Rank 2
Answers by
Rumen
Telerik team
Share this question
or