Problem with the scroll bar of a dhtmlxEditor

Hi,

I’m using a dhtmlxeditor and i would like to affect the dhx_blue skin.
So i use this syntax : var editorCause = new dhtmlXEditor(“editorObjCause”, “dhx_blue”);
The probleme is that the scrollbar is in the middle of the Editor.
If i use the syntax var editorCause = new dhtmlXEditor(“editorObjCause”);, i do not have
the scrollbar in the middle of the Editor.

Javascript includes and css

Where am i wrong ?


Hello,

locally the problem hasn’t been reproduced. You may try to use attached css file instead of the original
dhtmlxeditor_dhx_blue.zip (553 Bytes)

I had the same problem using the Editor in a Tabbar (in a Window).
I fixed it this way (File dhtmlxeditor.js):
this.editor = document.createElement(“IFRAME”);
this.editor.className = “dhxeditor_mainiframe_”+this.skin;
this.editor.frameBorder = 0;
this.editor.style.width = “100%”; ← the Line to be inserted

But, there are other problems with the Editor in IE8.
If you put the Editor into a Tab, then a part of the the Editor is visible in all other Tabs too (see Screenshots).






If you put the Editor into a Tab, then a part of the the Editor is visible in all other Tabs too (see Screenshots).

You may try to call enableForceHiding to solve the problem:

tabbar.enableForceHiding(true);