javascript - Is there a way to get a Telerik RadEditor to not show the toolbar by default when editor.set_html(value) is called in ShowOnFocus mode? -
I am trying to simulate keypresses and clicks in jQuery, which work to blur the toolbar in IE6 But Firefox seems to be open to stay open
Is there a way to blur the editor or some people I'm missing, which makes it so much that it stole the focus And shows toolbar by default?
This is updating because I am calling editor.set_html (value); Event for
OnClientLoad ()
editor. set_html ()
function?
After going a long way, I found out:
When the set_html () method is removed, the operation is added to the undo list.
Therefore, instead of using using
instead of editor.set_html (value), use the internal HTML attribute of the editor's content area to use
Should> editors.gate_contentArea (). InnerHTML = value;
and now the Toolbar does not open by default!
Comments
Post a Comment