Telerik RadEditor 图像管理器问题

发布于 2024-08-21 11:12:38 字数 694 浏览 10 评论 0原文

我们在项目中使用 Telerik RadEditor 控件,但它与用户文档存储引擎的集成存在一些问题。我们已经为 Telerik 图像管理器实现了自定义内容提供程序,它在对话框中显示正确的文档。但在选择时不会在图像之间切换。您可以在这张图片上看到这一点。我们已在空白 ASP.NET 页面上测试了此行为,无需任何其他 CSS 或 JS。 Rad 编辑器标签可以在下面找到。请帮忙!为什么会发生这种情况?

<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>

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>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

尐籹人 2024-08-28 11:12:39

感谢五工具!问题出在内容提供商身上。项目的完整路径(包括项目名称)应传递给 FileItem 构造函数的“location”参数。否则选择就会被破坏。

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.

倾其所爱 2024-08-28 11:12:38

如果没有您的 ContentProvider,它是否可以按预期工作?我想知道您的内容提供程序中的逻辑是否导致了该问题。从你的控制属性中我没有看到任何不寻常的东西。

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文