You are not logged in.
Pages: 1
If nothing is selected in the text area (eg. try click on the top corner of the menu bar without clicking on the button), and when you try to insert a special character, it will get inserted outside the text area.
Offline
If nothing is selected in the text area (eg. try click on the top corner of the menu bar without clicking on the button), and when you try to insert a special character, it will get inserted outside the text area.
How are you inserting the special character, with the charactermap plugin? In what browser?
Submit a ticket for this.
James Sleeman
Offline
Using Internet Explorer 6.0 . Firefox does not seem to exhibit this problem.
I'm trying it out with the full-example.html, insert by clicking on the "Insert special character" icon.
Hope that helps. Do you still need me to submit a separate ticket for this bug?
BTW, I've using the nightly download version about 2 - 3 days back.
Offline
Using Internet Explorer 6.0 . Firefox does not seem to exhibit this problem.
I'm trying it out with the full-example.html, insert by clicking on the "Insert special character" icon.
Hope that helps. Do you still need me to submit a separate ticket for this bug?
BTW, I've using the nightly download version about 2 - 3 days back.
Yes if you havn't submitted a ticket please do. Also if you could attach a screenshot illustrating the problem to the ticket.
James Sleeman
Offline
ok. i've put in a bug, but not sure how i can attach a screenshot.
Offline
There should be an attach file button on the ticket.
James Sleeman
Offline
ok. I've uploaded a screenshot of the bug
Offline
This should fix the bug for IE:
CharacterMap.prototype.buttonPress = function(editor) {
var sel = editor._getSelection();
var range = editor._createRange(sel);
if (HTMLArea.is_ie) {
if (!editor._iframe.contentWindow.document.body.createTextRange().inRange(range)) editor.setMode("wysiwyg");
}
editor._popupDialog( "plugin://CharacterMap/select_character", function( entity )
Offline
Pages: 1