有没有办法让 Telerik RadEditor 在 ShowOnFocus 模式下调用 editor.set_html(value) 时默认不显示工具栏?

发布于 2024-08-08 14:24:11 字数 400 浏览 10 评论 0原文

我正在尝试在 jQuery 中模拟按键和点击,它正在模糊 IE6 中的工具栏,但在 Firefox 中它似乎保持打开状态。

有没有办法模糊编辑器或一些 我缺少的设置使它不会窃取焦点并默认显示工具栏?

更新它之所以出现,是因为我在编辑器的OnClientLoad()事件中调用editor.set_html(value);。有没有办法让工具栏在调用set_html()函数后隐藏?

I'm trying to simulate keypresses and clicks in jQuery, which is working to blur the toolbar in IE6 but in Firefox it seems to remain open.

Is there some way to blur the editor or some setting that I'm missing that makes it so that it doesn't steal focus and show the toolbar by default?

Update it is showing up because I am calling editor.set_html(value); in the OnClientLoad() event for the editor. Is there any way to get the toolbar to hide after calling the set_html() function?

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

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

发布评论

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

评论(1

凑诗 2024-08-15 14:24:11

经过多次谷歌搜索,我发现 这篇文章

当 set_html() 方法被触发时,该操作将被添加到撤消列表中。您应该使用编辑器内容区域的innerHTML属性来设置编辑器中的内容

因此,我使用editor.get_contentArea().innerHTML = value;而不是editor.set_html(value); 现在工具栏默认不会打开!

After much googling, I discovered this post:

When the set_html() method is fired, the operation is added to the Undo list. You should use the innerHTML attribute of the editor's content area to set content in the editor

So instead of editor.set_html(value);, I use editor.get_contentArea().innerHTML = value; and now the toolbar doesn't open by default!

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