when i type something on ie 8, and press 'bold' on toolbar on top of the text editor, the cursor will go to the beginning of the entire text editor. is this bug in tiny mce?

on the other hand, if i select text i typed, and pressed control+b, no problem ; both are fine in firefox,ie6

link|improve this question

Did you also test this behavior on the demo page? tinymce.moxiecode.com/examples/full.php – Tim Nov 4 '10 at 10:13
@Tim, exactly, i already tried that link u given. same issue. – cometta Nov 4 '10 at 10:28
1  
i wan't able to test this behaviour, can you please give a more specific description of how to get this behaviour – Thariama Nov 8 '10 at 7:54
I believe this is a bug in IE8, could you explain your question more? – alexy13 Nov 8 '10 at 21:10
ya. i think it's bug too. can u try with tinymce.moxiecode.com/examples/full.php , i see same bug happens there. step 1, type something step 2. press bold on top of the toolbar, step3, u see the cursor will go to the beginning of entire text. – cometta Nov 9 '10 at 2:15
show 1 more comment
feedback

3 Answers

up vote 1 down vote accepted

I would'nt say that it's a bug in IE8.
A cursor does'nt move by magic, someone(tinymce) put's him somewhere.
So if the cursor does'nt appear at the expected position, it has to be a misbehaviour in tinymce.

But I can't provide a "bugfix", because this not occurs with my IE8(Win7).
What's your environment?

link|improve this answer
winxp with intenet explorer 8 – cometta Nov 14 '10 at 5:35
It also works correct with my test-environment winxp/ie8. I'll made an update for my IE, maybe something changes, but before I have to go to work. – Dr.Molle Nov 14 '10 at 6:11
Nothing changes, the bug won't appear – Dr.Molle Nov 14 '10 at 16:08
feedback

Have you tried turning off "View->Caret Browsing" in IE8 ? (it is toggled by F7)

  • That worked for me
link|improve this answer
feedback

I had a similar problem where the image that I wanted to insert was always going to the top of the editor. I solved it by setting the 'onchange_callback' field in the editor's init:

tinyMCE.init({..., onchange_callback: 'updateSelectionBookmark', ...});

This will call my 'updateSelectionBookmark' function when anything is changed on the screen, including the editor being blurred (Read more: http://tinymce.moxiecode.com/wiki.php/Configuration:onchange_callback). My updateSelectionBookmark looked something like:

function updateSelectionBookmark (ed) {
  ed.updatedSelectionBookmark = ed.selection.getBookmark(1);
}

This will add a custom property to the editor object which will always contain the latest bookmark.

I then make use of the stored bookmark whenever I need to add the content:

ed.selection.moveToBookmark(ed.updatedSelectionBookmark);

I wanted to insert HTML so I put this before my call to the instance command (In my case, mceInsertRawHTML).

I hope this helps someone, even if my answer is a few months late.

Edit (A few months later): So I originally found this solution while working with TinyMCE 3.2.2.3 but we recently updated to 3.4.4 for compatibility with IE9. Looks like the above solution doesn't work as well as I thought it did. I've since found a (as far as I can tell) perfect solution to this. It's similar to the above except when and where to trigger the callback. Instead of using onchange_callback in the settings, you should use the editor's onEvent event:

tinyMCE.init({
  ...,
  setup: function (ed) {
    ed.onEvent.add(function (ed, e) {
      ed.updatedSelectionBookmark = ed.selection.getBookmark(1);
    });
  },
  ...
});

This replaces the need for the updateSelectionBookmark function or the onchange_callback setting. The reason onEvent works better than onChange is because it gets called after any possible event, including mouse or key presses so the cursor's position is guaranteed to be saved even if moved but the content isn't changed.

After setting up the editor with the above event callback, just use moveToBookmark as stated above to restore the selection. I've tested this on IE9, Chrome, FF6, it works when inserting images/text inside text/tables.

link|improve this answer
Thank you so much for this solution! – jodeci Apr 29 '11 at 5:57
I found a better solution to this that works with IE9 on TinyMCE 3.4.4 and updated the answer accordingly. – aiham Aug 31 '11 at 9:37
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.