Ticket #2531 (closed Bug: fixed)
Scroll Into View Bug When Breaking Large Content (FF)
| Reported by: | dshafik | Owned by: | fredck |
|---|---|---|---|
| Priority: | Normal | Milestone: | FCKeditor 2.6.4 |
| Component: | General | Version: | FCKeditor 2.6.3 |
| Keywords: | Confirmed Firefox Review+ | Cc: |
Description
If you paste a large amount into the editor, where you end up with:
<p> some large text <br /> paragraphs aren't there anymore </p>
And you wish to put the paragraphs in to make it look like:
<p> some large text </p> <p> paragraphs aren't there anymore </p>
It will scroll the end of the second paragraph into view, which when the end is far enough away, will push the cursor off-screen, which can be confusing (why did I jump to the bottom?).
If you continue to type, it'll start typing where the cursor is, not where the eye is, scrolling that back into view.
The lines that cause the issue are fckenterkey.js lines 538/539:
source:FCKeditor/trunk/editor/_source/classes/fckenterkey.js@2136#L538
I initially just commented this out, but then when you want to put in a new paragraph at the end, it will not scroll that into view.
It seems to me that it should scroll when the paragraph is empty, but not otherwise, adding a FCKDomTools.CheckIsEmptyElement() will not work however, as we actually have:
<p> <br _moz_dirty=""> <br type="moz"> </p>
Some changes to the CheckIsEmptyElement() however will solve this (see patch).
This does not completely solve the issue. When pressing enter with an "empty" paragraph being add, it will work fine. When pressing enter with a non-empty paragraph following, it works fine so long as it's not at the bottom of the view area, because then it doesn't scroll and should.
This is a little better, but not complete. The best solution would be to move to the top of the paragraph, not the bottom. Is this possible?
- Davey
Attachments
Change History
Changed 4 years ago by dshafik
-
attachment
fix_enterkey.patch
added
comment:1 Changed 4 years ago by arczi
- Keywords Pending added
Could you try it with current version? It seems to be fixed. http://www.fckeditor.net/demo
comment:2 Changed 4 years ago by dshafik
This bug was reported against, and still exists in 2.6.3, as well as the latest revision (r2400)
comment:3 Changed 4 years ago by arczi
- Keywords WorksForMe added
I'm still not able to reproduce this bug in latest version. Please write more details.
comment:4 Changed 4 years ago by fredck
- Keywords Confirmed Firefox added; Pending WorksForMe removed
- Version set to FCKeditor 2.6.3
Confirmed with FF3.
comment:5 Changed 4 years ago by fredck
- Keywords Review? added
- Owner set to fredck
- Status changed from new to assigned
- Milestone set to FCKeditor 2.6.4

Patch to partially fix enter key with following content odd movement