Hi!
We are using the editor in Firefox and IE. It works great in IE7 and 8. Many of our users use Firefox also. These editors are in an AjaxExtender Modal Popup.
In FF, the editor shows vertically very short and mis-shapen. If I click on one of the bottom buttons (HTML or preview), then the control sizes correctly!
My co-worker found a work-around script to help with this...
However, this doesn't work. I've played with the height and size values to no avail.
The weird part is that when I click on one of the Change Edit buttons (tabs) then the control sizes correctly.
Any thoughts? Is this a bug?
Thanks In Advance
Rich
We are using the editor in Firefox and IE. It works great in IE7 and 8. Many of our users use Firefox also. These editors are in an AjaxExtender Modal Popup.
In FF, the editor shows vertically very short and mis-shapen. If I click on one of the bottom buttons (HTML or preview), then the control sizes correctly!
My co-worker found a work-around script to help with this...
| function OnRadEditorClientLoad(editor, args) { |
| if (!document.all) { |
| window.setTimeout(function() { |
| var editorIframe = $get(editor.get_id() + "Wrapper").getElementsByTagName("iframe")[0]; |
| editorIframe.style.height = "20px"; |
| editor.setSize(415, 55); |
| }, 100); |
| } |
| var style = editor.get_contentArea().style; |
| style.backgroundImage = "none"; |
| style.backgroundColor = "white"; |
| } |
However, this doesn't work. I've played with the height and size values to no avail.
The weird part is that when I click on one of the Change Edit buttons (tabs) then the control sizes correctly.
Any thoughts? Is this a bug?
Thanks In Advance
Rich
