0
votes

We are using Telerik RadEditor control in our project and having some problems with its integration with our user documents storage engine. We've implemented custom content provider for Telerik image manager and it shows correct documents in dialog. But in doesn't switch between images while selection. You can see this on this picture. We've tested this behaviour on the blank ASP.NET page without any additional CSS or JS. Rad editor tag could be found below. Please help! Why do this could happen?

<telerik:RadEditor ID="radEditor" runat="server" 
    ToolbarMode="ShowOnFocus"
    ToolsWidth="402"
    EditModes="Design"
    ToolsFile="~/RadEditor.xml"
    Skin="Default">
    <ImageManager ViewPaths="IMAGES" EnableImageEditor="False" ContentProviderTypeName="FileStorageContentProvider, App_CODE" />
</telerik:RadEditor>
2

2 Answers

2
votes

Does it work as intended without your ContentProvider? I'm wondering if the logic in your contentprovider is causing the issue. I don't see anything out of the oridinary from your control properties.

0
votes

Thanks to FiveTools! The issue was in content provider. Full path to item (including item name) should be passed to the 'location' parameter of the FileItem constructor. Otherwise selection would be broken.