-
28 Dec 2009 2:48 AM #1
HtmlEditor toolbar hide problem
HtmlEditor toolbar hide problem
Hi All,
When i hide the toolbar of the HtmlEditor, still the space, where the toobar was, remains occupied as blank space in IE.
But in Firefox the space becomes available for wrting but not in IE.
PFA the image HtmlEditor.jpg
Can anyone help me in that ?
-
19 Oct 2011 9:11 PM #2
Here is a simple example to show how you can get around this issue in IE7/8
Code:new Ext.form.HtmlEditor({ renderTo: Ext.getBody(), width: 800, height: 300, listeners: { afterrender: function(editor) { var toolbar = editor.getToolbar(); toolbar.hideParent = true; toolbar.hide(); } } });


Reply With Quote