I have just upgraded to 2.3.1 and seem to have an issue with the dropdowns from the toolbar. The drop downs appear over to the right by the left position of the iframe, so if the editor is at 300px, the dropdowns appear at 600px.
Anyone else has this and found a fix?
using 2.3.1 and firefox 1.5.0.6
Anyone else has this and found a fix?
using 2.3.1 and firefox 1.5.0.6
RE: 2.3.1 - Dropdown position in firefox
By deleting that, dropdowns were working correctly again.
Hope this helps
RE: 2.3.1 - Dropdown position in firefox
Yikes! I'm going to try going back a rev or two and see if it fixes it. But I'd rather use 2.3.1 if anyone finds a fix/workaround.
RE: 2.3.1 - Dropdown position in firefox
in _source/classes/fckpanel.js line 159:
x += oPos.X ;
y += oPos.Y ;
add:
if ( FCKBrowserInfo.IsGecko )
{
x -= <left>;
y -= <top>;
}
Replace <left> and <top> with the left and top value of your absolute positioned div.
This is not a real solution, just a simple hack to fix my problem...
RE: 2.3.1 - Dropdown position in firefox
I have the following observation:
I load the editor in an element which has the CSS-attribute overflow set to auto. Then I scroll the content of the element (which also contains the editor) and the context menu is off about the height that I have scrolled. The same thing is true for the toolbar-dropdowns.
Another problem that persists in Firefox for me: I load the editor in a hidden div, make that visible after user interaction (click on a tab). If the editor doesn't contain any content at the beginning it can not be used. The only solution is to switch to the source-mode and type something. Then I can go back to the normal mode and continue work. Is there a solution for that?
RE: 2.3.1 - Dropdown position in firefox
var editor = FCKeditorAPI.GetInstance('youreditorname');
editor.MakeEditable();
HTH
RE: 2.3.1 - Dropdown position in firefox
RE: 2.3.1 - Dropdown position in firefox
1. Go to the demo page with Firefox 1.5 (I have testet with MacOS 10.4 and SuSE Linux 10.1), write many lines so that the editor needs to scroll. Insert a Table at the end and rightclick on it. The Editor will scroll to the top. I could not reproduce that with my installation.
2. I could not reproduce it on the demo page. I have a large Table (a very old page). I scroll down and rightclick somewhere ob the content. The contextmenu appears to low, as if I had not scrolled and hit the page at exactly that place. I have FCKeditor 2.3.2 downloaded a fiew days ago from sourceforge with some special plugins for our CMS.
3. If I have the Editor placed in an Element with overflow:auto and scroll that Element I have the same effect as with 2. The error from the Element and from the editors own scrollbar are added.
Maybe that helps to find the problem(s).
RE: 2.3.1 - Dropdown position in firefox
nathan parks
paperlampdev.com