Announcement

Do not use the forums to submit bug reports, feature requests or patches, submit a New Ticket instead.

#1 2005-03-18 13:30:53

CyberTron
Xinha Community Member
Registered: 2005-03-18
Posts: 25

Bug in insert special character?

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

#2 2005-03-19 01:50:56

gogo
Xinha Leader
From: New Zealand
Registered: 2005-02-11
Posts: 1,015
Website

Re: Bug in insert special character?

CyberTron wrote:

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

#3 2005-03-19 13:35:34

CyberTron
Xinha Community Member
Registered: 2005-03-18
Posts: 25

Re: Bug in insert special character?

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

#4 2005-03-19 22:29:26

gogo
Xinha Leader
From: New Zealand
Registered: 2005-02-11
Posts: 1,015
Website

Re: Bug in insert special character?

CyberTron wrote:

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

#5 2005-03-20 06:47:25

CyberTron
Xinha Community Member
Registered: 2005-03-18
Posts: 25

Re: Bug in insert special character?

ok. i've put in a bug, but not sure how i can attach a screenshot.

Offline

#6 2005-03-20 06:50:41

gogo
Xinha Leader
From: New Zealand
Registered: 2005-02-11
Posts: 1,015
Website

Re: Bug in insert special character?

There should be an attach file button on the ticket.

http://xinha.gogo.co.nz/cgi-bin/trac.cgi/ticket/80


James Sleeman

Offline

#7 2005-03-22 03:36:53

CyberTron
Xinha Community Member
Registered: 2005-03-18
Posts: 25

Re: Bug in insert special character?

ok. I've uploaded a screenshot of the bug

Offline

#8 2005-03-22 14:01:13

CyberTron
Xinha Community Member
Registered: 2005-03-18
Posts: 25

Re: Bug in insert special character?

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

Board footer

Powered by FluxBB