有没有办法让 Telerik RadEditor 在 ShowOnFocus 模式下调用 editor.set_html(value) 时默认不显示工具栏?
我正在尝试在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
经过多次谷歌搜索,我发现 这篇文章:
因此,我使用
editor.get_contentArea().innerHTML = value;而不是
现在工具栏默认不会打开!editor.set_html(value);
。After much googling, I discovered this post:
So instead of
editor.set_html(value);
, I useeditor.get_contentArea().innerHTML = value;
and now the toolbar doesn't open by default!