Hi, I have implemented a custom FileBrowserContentProvider for Azure and customized the file bowser by following the steps on the “Editor - Customize Built-in Dialogs” article (http://demos.telerik.com/aspnet-ajax/editor/examples/externaldialogspath/defaultcs.aspx).
Everything is working well but the image editor is not rendered properly (check the attached files).
<telerik:RadEditor
ID="RadEditor1"
RenderMode="Classic"
LocalizationPath="~/App_GlobalResources/Controls_Editor"
ContentFilters="MakeUrlsAbsolute"
DocumentManager-MaxUploadFileSize="11000000"
OnFileUpload="RadEditor1_FileUpload"
OnFileDelete="RadEditor1_FileDelete"
ExternalDialogsPath="~/Controls/TelerikEditorDialogs/"
runat="server">
<Tools>
<telerik:EditorToolGroup Tag="FileManagers">
<telerik:EditorTool Name="ImageManager"></telerik:EditorTool>
<telerik:EditorTool Name="DocumentManager"></telerik:EditorTool>
<telerik:EditorTool Name="TemplateManager"></telerik:EditorTool>
</telerik:EditorToolGroup>
<telerik:EditorToolGroup>
<telerik:EditorTool Name="Bold"></telerik:EditorTool>
<telerik:EditorTool Name="Italic"></telerik:EditorTool>
<telerik:EditorTool Name="Underline"></telerik:EditorTool>
<telerik:EditorSeparator></telerik:EditorSeparator>
<telerik:EditorTool Name="ForeColor"></telerik:EditorTool>
<telerik:EditorTool Name="BackColor"></telerik:EditorTool>
<telerik:EditorSeparator></telerik:EditorSeparator>
<telerik:EditorTool Name="FontName"></telerik:EditorTool>
<telerik:EditorTool Name="RealFontSize"></telerik:EditorTool>
</telerik:EditorToolGroup>
</Tools>
</telerik:RadEditor>