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

hide the path box inside file explorer popup

1 Answer 117 Views
Editor
This is a migrated thread and some comments may be shown as answers.
Tony
Top achievements
Rank 1
Tony asked on 06 Jan 2013, 01:10 AM
inside the popup Image Manager of my rededitor, Is it possible to hide the file path box? I want to hide the server location of the folder from user.

thanks in advance

1 Answer, 1 is accepted

Sort by
0
Princy
Top achievements
Rank 2
answered on 07 Jan 2013, 05:04 AM
Hi Tony,

Try the following to hide the address bar:

1) Register the external dialog files of RadEditor:

ASPX:
<telerik:radeditor runat="server" ExternalDialogsPath="~/EditorDialogs" ID="RadEditor1">
   <TemplateManager ViewPaths="~/" UploadPaths="~/" />
   <ImageManager ViewPaths="~/" UploadPaths="~/" />
</telerik:radeditor>

2) Open the \EditorDialogs\FileBrowser.ascx file, locate the RadFileExplorer control and set the VisibleControls property with the following value.

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

3) Save the files, load the page with the editor and test the dialogs.

Hope this helps.

Regards,
Princy.
Tags
Editor
Asked by
Tony
Top achievements
Rank 1
Answers by
Princy
Top achievements
Rank 2
Share this question
or